Skip to content

chore(deps): Bump ansible-core from 2.16.6 to 2.17.5 in /.github/workflows/requirements #79

chore(deps): Bump ansible-core from 2.16.6 to 2.17.5 in /.github/workflows/requirements

chore(deps): Bump ansible-core from 2.16.6 to 2.17.5 in /.github/workflows/requirements #79

Workflow file for this run

---
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 }}