mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
Merge pull request #182 from cloudflare/lrapoport/update-issues-workflow
Update issues workflow
This commit is contained in:
commit
9df50d42e4
2 changed files with 16 additions and 3 deletions
6
.github/workflows/issues.yml
vendored
6
.github/workflows/issues.yml
vendored
|
@ -1,13 +1,13 @@
|
||||||
name: Add issues to workers-sdk GH project
|
name: Issue
|
||||||
|
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
types:
|
types:
|
||||||
- opened
|
- [opened, transferred]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
add-to-project:
|
add-to-project:
|
||||||
name: Add issue to project
|
name: Add issue to workers-sdk GH project
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/add-to-project@v0.5.0
|
- uses: actions/add-to-project@v0.5.0
|
||||||
|
|
13
.github/workflows/pullrequests.yml
vendored
Normal file
13
.github/workflows/pullrequests.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name: Pull request
|
||||||
|
|
||||||
|
on: pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-to-project:
|
||||||
|
name: Add PR to workers-sdk GH 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