-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from BayAreaMetro/add-issue-creation-workflow
Add issue creation for release plan // add issue to run full Emme test
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|