Skip to content

Commit

Permalink
chore: Add issue-to-project.yml, enable coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-q committed May 31, 2024
1 parent 3a1fc7c commit bfd6b8e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,7 @@ jobs:
# tests-stable-no-features,
tests-stable-all-features, tests-other, check]
# Run only if there are changes in the relevant files and the check job passed or was skipped
# if: always() && !failure() && !cancelled() && needs.changes.outputs.rust == 'true' && github.event_name != 'merge_group'
if: false # todo
if: always() && !failure() && !cancelled() && needs.changes.outputs.rust == 'true' && github.event_name != 'merge_group'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/issue-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Add issues to project

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/CQCL-DEV/projects/10
github-token: ${{ secrets.HUGRBOT_PAT }}
id: add-project

0 comments on commit bfd6b8e

Please sign in to comment.