diff --git a/.github/workflows/add_issue_to_project_board.yml b/.github/workflows/add_issue_to_project_board.yml new file mode 100644 index 0000000..db7ee99 --- /dev/null +++ b/.github/workflows/add_issue_to_project_board.yml @@ -0,0 +1,15 @@ +name: Auto add issues to project board +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.2 + with: + project-url: https://github.com/orgs/AllenNeuralDynamics/projects/9 + github-token: ${{ secrets.SERVICE_TOKEN }} diff --git a/.github/workflows/tag_and_publish.yml b/.github/workflows/tag_and_publish.yml index 413ec92..0d386e1 100644 --- a/.github/workflows/tag_and_publish.yml +++ b/.github/workflows/tag_and_publish.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: "main" fetch-depth: 0 @@ -31,7 +31,7 @@ jobs: SINGULARITY_VERSION: '3.7.0' needs: tag steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Pull latest changes run: git pull origin main - name: Install dependencies