Skip to content

Commit

Permalink
update action to test script
Browse files Browse the repository at this point in the history
  • Loading branch information
chris del committed Nov 13, 2024
1 parent 7d7b28d commit 537fc14
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/update-external-docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Update External Docs
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 1'

permissions:
pull-requests: write
Expand All @@ -11,7 +9,7 @@ permissions:
jobs:
update-docs:
runs-on: ubuntu-latest
if: github.repository_owner == 'expressjs'
if: github.repository_owner == 'chrisdel101'
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
Expand All @@ -23,16 +21,4 @@ jobs:
run: |
bash ./get-contributing.sh
bash ./get-readmes.sh
node ./get-express-version.mjs
- name: Create Pull Request
uses: gr2m/create-or-update-pull-request-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commit-message: update external docs
title: 'Update external docs'
body: >
This auto-generated PR updates external documentation to the expressjs.com repository.
labels: doc
team_reviewers: expressjs/docs-wg
branch: external-docs-${{ github.sha }}
node ./get-express-version.mjs

0 comments on commit 537fc14

Please sign in to comment.