-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: only add issues to project boards
- Loading branch information
1 parent
3cdd11b
commit f352883
Showing
1 changed file
with
18 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,18 @@ | ||
name: Project automations | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
- reopened | ||
env: | ||
PROJECT_URL: https://github.com/orgs/Shopify/projects/2279 | ||
|
||
jobs: | ||
add-to-project: | ||
name: Issue or PR opened | ||
runs-on: shopify-ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] # https://github.com/actions/add-to-project/tree/v0.4.0 | ||
with: | ||
project-url: ${{ env.PROJECT_URL }} | ||
github-token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }} |