Skip to content

Commit

Permalink
Add issue and PR automation workflows
Browse files Browse the repository at this point in the history
Add automation workflows to assist with issue and PR management

Signed-off-by: Scott Lowe <[email protected]>
  • Loading branch information
scottslowe committed May 19, 2023
1 parent c69a29a commit 5dcb37c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/add-to-project.yml
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 }}
17 changes: 17 additions & 0 deletions .github/workflows/add-triage-label.yml
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

0 comments on commit 5dcb37c

Please sign in to comment.