diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..ad819e5 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -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/add-to-project@v0.4.0 + with: + project-url: https://github.com/orgs/pulumi/projects/47 + github-token: ${{ secrets.PULUMI_BOT_GHA_MARKETING }} \ No newline at end of file diff --git a/.github/workflows/add-triage-label.yml b/.github/workflows/add-triage-label.yml new file mode 100644 index 0000000..b4b1c23 --- /dev/null +++ b/.github/workflows/add-triage-label.yml @@ -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 \ No newline at end of file