chore(deps): Bump ansible-core from 2.16.13 to 2.17.6 in /.github/workflows/requirements in the pip group across 1 directory #93
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
--- | |
name: Milestone & Project PR Automation | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
milestone: | |
name: Add milestone to GitHub PR | |
if: github.actor == 'renovate[bot]' | |
runs-on: ubuntu-24.04 | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Find current milestone and add it to GitHub PR | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const { data: [milestone] } = await github.rest.issues.listMilestones({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
}); | |
await github.rest.issues.update({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
milestone: milestone.number, | |
}); | |
project: | |
name: Add project to GitHub PR | |
if: github.actor == 'renovate[bot]' | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Add Project | |
uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v.1.0.2 | |
with: | |
project-url: https://github.com/orgs/nginxinc/projects/17/views/1 | |
github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }} |