...

Text file src/github.com/gorilla/mux/.github/workflows/issues.yml

Documentation: github.com/gorilla/mux/.github/workflows

     1# Add all the issues created to the project.
     2name: Add issue or pull request to Project
     3
     4on:
     5  issues:
     6    types:
     7      - opened
     8  pull_request_target:
     9    types:
    10      - opened
    11      - reopened
    12
    13jobs:
    14  add-to-project:
    15    runs-on: ubuntu-latest
    16    steps:
    17      - name: Add issue to project
    18        uses: actions/add-to-project@v0.5.0
    19        with:
    20          project-url: https://github.com/orgs/gorilla/projects/4
    21          github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }}

View as plain text