Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Bump follow-redirects from 1.14.9 to 1.15.4 #65

Bump follow-redirects from 1.14.9 to 1.15.4

Bump follow-redirects from 1.14.9 to 1.15.4 #65

Workflow file for this run

on: [push]
jobs:
test_action:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
# To use this repository's private action,
# we must check out the repository
- name: Checkout
uses: actions/checkout@v3
- id: check-for-readme-changes
uses: ./
with:
ref: master
callback: |
return filenamesList.some((elem) => { return elem.match(/package\.json/) })
- name: Run this step only if README changes are detected
if: ${{ steps.check-for-readme-changes.outputs.callback_return == 'true' }}
run: |
echo "This REF includes package.json changes"