-
-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Github Action workflow for PRs and Issues (#7)
- Loading branch information
1 parent
b9d2c5c
commit b742190
Showing
1 changed file
with
30 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,30 @@ | ||
|
||
name: Backlog | ||
on: | ||
issues: | ||
types: [opened, reopened] | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
add_issue: | ||
name: "Add Issue" | ||
if: github.event_name == 'issue' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: alex-page/github-project-automation-plus@9a05133 | ||
with: | ||
project: Backlog | ||
column: Inbox | ||
repo-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | ||
|
||
add_pull_request: | ||
name: "Add Pull Request" | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: alex-page/github-project-automation-plus@9a05133 | ||
with: | ||
project: Backlog | ||
column: In progress | ||
repo-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |