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

Bump axios from 0.26.1 to 1.6.0 #64

Bump axios from 0.26.1 to 1.6.0

Bump axios from 0.26.1 to 1.6.0 #64

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"