generated from pulumi/pulumi-component-provider-ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add issue and PR automation workflows
Add automation workflows to assist with issue and PR management Signed-off-by: Scott Lowe <[email protected]>
- Loading branch information
1 parent
c69a29a
commit 5dcb37c
Showing
2 changed files
with
36 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,19 @@ | ||
name: Add issues and PRs to project | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
- reopened | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
jobs: | ||
add-to-project: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add to DevRel | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/pulumi/projects/47 | ||
github-token: ${{ secrets.PULUMI_BOT_GHA_MARKETING }} |
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: Add triage label to new issues and PRs | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
- reopened | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
jobs: | ||
add-triage-label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
labels: needs-triage |