Bump minimatch from 3.0.4 to 9.0.9 in /Linear-Algebra #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This GitHub Action updates the DIRECTORY.md file (if needed) when doing a git push | |
| name: update_directory_md | |
| on: [push] | |
| jobs: | |
| update_directory_md: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@v1 | |
| - run: | | |
| node .github/workflows/UpdateDirectory.js | |
| cat DIRECTORY.md | |
| git config --global user.name github-actions | |
| git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com' | |
| git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
| git add DIRECTORY.md | |
| git commit -am "updating DIRECTORY.md" || true | |
| git push --force origin HEAD:$GITHUB_REF || true |