Skip to content

Sync Roadmap PRs Daily #167

Sync Roadmap PRs Daily

Sync Roadmap PRs Daily #167

name: Sync Roadmap PRs Daily
on:
schedule:
- cron: '0 7 * * *' # Runs every day at 07:00 UTC (9 AM CEST / 8 AM CET)
workflow_dispatch:
jobs:
update-roadmap:
name: Run Roadmap Updaters
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Authenticate GH CLI
run: echo "${{ secrets.GH_PAT }}" | gh auth login --with-token
- name: Assign Area Labels to PRs Script
run: scripts/assign-area-labels-to-prs.sh all
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
- name: Add PRs to Roadmap Project Script
run: scripts/add-prs-to-project.sh
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
- name: Adapt Closed PRs Script
run: scripts/adapt-closed-prs.sh all-odd-even
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}