Skip to content

Commit

Permalink
Merge pull request #38 from BayAreaMetro/add-issue-creation-workflow
Browse files Browse the repository at this point in the history
Add issue creation for release plan // add issue to run full Emme test
  • Loading branch information
e-lo authored Mar 22, 2022
2 parents 73a86af + b5f9103 commit e7e168c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release_plan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release Planning Milestone

on:
milestone:
types:
- created

jobs:
create_issue:
name: Create Full Test with Emme Issue
runs-on: ubuntu-latest
permissions:
issues: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MILESTONE: ${{ github.event.milestone.number }}
steps:
- name: Create Full Test with Emme Issue
uses: imjohnbo/issue-bot@3daae12aa54d38685d7ff8459fc8a2aee8cea98b
with:
assignees: "flaviatsang"
labels: "test-run"
title: "Run Full Emme Tests for $MILESTONE"
body: |
### Checklist
- [ ] Run full tests with Emme environment installed
- [ ] Generate bug issues for any failing tests
- [ ] Update any relevant EmmeMock output
milestone: $MILESTONE
pinned: false
close-previous: false

0 comments on commit e7e168c

Please sign in to comment.