70bf21e064
Handle Changesets / Handle Changesets (push) Waiting to run
Semgrep OSS scan / semgrep-oss (push) Waiting to run
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
name: Add issues to DevProd project
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, transferred]
|
|
|
|
permissions:
|
|
# issues:write permission needed so that the workflow can manage issues
|
|
issues: write
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
runs-on: ubuntu-slim
|
|
steps:
|
|
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/cloudflare/projects/1
|
|
github-token: ${{ secrets.GH_ACCESS_TOKEN }}
|
|
labeled: bug, enhancement
|
|
label-operator: OR
|
|
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/cloudflare/projects/2
|
|
github-token: ${{ secrets.GH_ACCESS_TOKEN }}
|
|
labeled: product:pages
|
|
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/cloudflare/projects/6
|
|
github-token: ${{ secrets.GH_ACCESS_TOKEN }}
|
|
labeled: product:d1
|
|
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/cloudflare/projects/12
|
|
github-token: ${{ secrets.GH_ACCESS_TOKEN }}
|
|
labeled: product:c3
|
|
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
|
|
with:
|
|
project-url: https://github.com/orgs/cloudflare/projects/8
|
|
github-token: ${{ secrets.GH_ACCESS_TOKEN }}
|
|
labeled: product:queues
|