MNT: (deps): Bump flake8-simplify from 0.19.3 to 0.21.0 in /ci #271
Workflow file for this run
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
# If a PR doesn't have a milestone assigned when it's merged, assign it the | |
# one that's scheduled next. | |
name: Assign Latest Milestone | |
on: | |
pull_request_target: | |
types: [closed] | |
branches: [main] | |
permissions: | |
pull-requests: write | |
issues: write | |
jobs: | |
sync: | |
name: Assign Latest Milestone | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v7 | |
name: Run script | |
with: | |
script: | | |
if (!context.payload.pull_request.merged) { | |
console.log('PR was not merged, skipping.'); | |
return; | |
} | |
if (!!context.payload.pull_request.milestone) { | |
console.log('PR has existing milestone, skipping.'); | |
return; | |
} | |
if (context.payload.pull_request.user.type === 'Bot') { | |
console.log('Ignoring Bot PR'); | |
return; | |
} | |
milestones = await github.rest.issues.listMilestones({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
state: 'open', | |
sort: 'due_on', | |
direction: 'asc' | |
}) | |
if (milestones.data.length === 0) { | |
console.log('There are no milestones, skipping.'); | |
return; | |
} | |
console.log(`Adding to milestone: ${milestones.data[0].number}`); | |
result = await github.rest.issues.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.number, | |
milestone: milestones.data[0].number | |
}); | |
console.log(result); |