Skip to content

Commit

Permalink
actions: write updates directly to redirectLinks.json to main (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
flakey5 authored Nov 20, 2023
1 parent 95ec685 commit 830d72a
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/update-links.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Update Redirect Links

on:
# Triggered by https://github.com/nodejs/node/blob/main/.github/workflows/update-release-links.yml
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
Expand Down Expand Up @@ -31,15 +32,16 @@ jobs:
env:
CF_ACCESS_KEY_ID: ${{ secrets.CF_ACCESS_KEY_ID }}
CF_SECRET_ACCESS_KEY: ${{ secrets.CF_SECRET_ACCESS_KEY }}

- name: Open PR with updates
uses: peter-evans/create-pull-request@v5
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5.0.0
with:
commit-message: Update Redirect links
title: "chore: update redirect links"
body: |
This PR updates the links for url redirects.
branch: update-redirect-links
delete-branch: true
base: main
commit_options: '--no-verify --no-signoff'
commit_message: 'chore: update redirect links'

- name: Deploy Worker to Production
run: |
gh workflow run deploy.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}

0 comments on commit 830d72a

Please sign in to comment.