From fc2be57c9c36a2cdfcbb83283dc618dd863ffe38 Mon Sep 17 00:00:00 2001 From: Patrick Flynn Date: Fri, 30 Sep 2022 14:25:08 -0400 Subject: [PATCH] Add project board syncer Signed-off-by: Patrick Flynn --- .../workflows/add-issues-to-project-images.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/add-issues-to-project-images.yaml diff --git a/.github/workflows/add-issues-to-project-images.yaml b/.github/workflows/add-issues-to-project-images.yaml new file mode 100644 index 0000000..e789942 --- /dev/null +++ b/.github/workflows/add-issues-to-project-images.yaml @@ -0,0 +1,16 @@ +name: Add all new issues to Images project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/chainguard-dev/projects/22 + github-token: ${{ secrets.PROJECT_WRITE }}