This repository has been archived by the owner on Jan 28, 2024. It is now read-only.
Bump tldr from 462bbb0
to 923fc2c
#525
Workflow file for this run
This file contains 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
name: Auto merge and update index | |
on: pull_request | |
jobs: | |
automerge: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
- name: Fetch resources | |
run: | | |
curl -o index.json https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/index.json | |
- name: Update resources | |
uses: test-room-7/action-update-file@v1 | |
with: | |
file-path: index.json | |
commit-msg: Update index.json | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: fastify/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |