Skip to content

Commit

Permalink
build: auto add issues to project board (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Jan 26, 2025
1 parent bd5bb16 commit 167baec
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/add_issue_to_project_board.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
project-url: https://github.com/orgs/AllenNeuralDynamics/projects/9
github-token: ${{ secrets.SERVICE_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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
Expand Down

0 comments on commit 167baec

Please sign in to comment.