-
Notifications
You must be signed in to change notification settings - Fork 7
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 #185 from koinos/update-workflows
Update github workflows
- Loading branch information
Showing
3 changed files
with
53 additions
and
3 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,19 @@ | ||
name: Assign issue to project | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
assign_to_project: | ||
runs-on: ubuntu-latest | ||
name: Assign issue to project | ||
steps: | ||
|
||
- name: Assign issue with `bug` or `enhancement` label to project | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/koinos/projects/6 | ||
github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }} | ||
labeled: bug, enhancement | ||
label-operator: OR |
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,17 @@ | ||
name: Assign pull request to project | ||
|
||
on: | ||
pull_request: | ||
types: [opened] | ||
|
||
jobs: | ||
assign_to_project: | ||
runs-on: ubuntu-latest | ||
name: Assign pull request to project | ||
steps: | ||
|
||
- name: Assign pull request to project | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/koinos/projects/6 | ||
github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }} |
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