diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml index 149a1d4..d5f0e81 100644 --- a/.github/workflows/add-to-project.yml +++ b/.github/workflows/add-to-project.yml @@ -75,3 +75,17 @@ jobs: labeled: 6.3 # In case there is more than one label, use operators # label-operator: AND + + add-to-wp-6-4-project: + name: Add WP 6.4 Issue(s) to WP 6.4 Documentation project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + if: contains(github.event.issue.labels.*.name, '6.4') + # https://github.com/marketplace/actions/add-to-github-projects + with: + project-url: https://github.com/orgs/WordPress/projects/141 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + labeled: 6.4 + # In case there is more than one label, use operators + # label-operator: AND