chore(deps): bump poetry2nix to pickup groups/checkGroups API change … #400
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Set milestone on issues closed by PR | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} | |
permissions: | |
issues: write | |
pull-requests: read | |
jobs: | |
set-milestone: | |
if: github.repository == 'ibis-project/ibis' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set milestone | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./ci/set-milestone-on-issue.sh "${GITHUB_SHA}" |