Skip to content

Commit

Permalink
test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhcoll committed Oct 13, 2023
1 parent 9f75b00 commit da1410b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 61 deletions.
61 changes: 0 additions & 61 deletions .github/action.yaml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Generate Read More related

on:
push:
branches:
- automate-read-more
pull_request:

permissions:
contents: read
pull-requests: read

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
generate-read-more:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v4
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16.13.x
cache: npm
- name: Install
run: npm install
- name: Gather files changed
uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b
with:
fileOutput: 'json'
- name: Show files changed
run: cat $HOME/files.json

0 comments on commit da1410b

Please sign in to comment.