mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-22 01:53:24 +01:00
71199d2757
--ignore-path is meant to be the path of an ignore-file, not the actual directories to ignore.
16 lines
360 B
YAML
16 lines
360 B
YAML
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 }}
|