mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-21 17:43:23 +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:
|
||||
issues:
|
||||
types:
|
||||
- opened
|
||||
- [opened, transferred]
|
||||
|
||||
jobs:
|
||||
add-to-project:
|
||||
name: Add issue to project
|
||||
name: Add issue to workers-sdk GH project
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- 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