Skip to content

Commit

Permalink
Merge pull request #31 from pulumi/slowe/update-workflows
Browse files Browse the repository at this point in the history
Add issue and PR automation workflows
  • Loading branch information
scottslowe authored May 19, 2023
2 parents c69a29a + 5dcb37c commit 9506b2d
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 9506b2d

Please sign in to comment.