mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
Add workflow to add issues to GH project
This commit is contained in:
parent
e18e1dfc82
commit
f85e1acfa7
1 changed files with 16 additions and 0 deletions
16
.github/workflows/issues.yml
vendored
Normal file
16
.github/workflows/issues.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Add issues to workers-sdk GH project
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-to-project:
|
||||||
|
name: Add issue to project
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/add-to-project@v0.5.0
|
||||||
|
with:
|
||||||
|
project-url: https://github.com/orgs/cloudflare/projects/1
|
||||||
|
github-token: ${{ secrets.GH_ACCESS_TOKEN }}
|
Loading…
Reference in a new issue