Auto sort files #95
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 sort files | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
sort-file: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- name: Install tools | |
run: | | |
npm i -g [email protected] | |
npm i -g [email protected] | |
- name: Sort files | |
run: | | |
jsonsort release-please-config.json | |
yaml-sort -i .github/pr_labeler.yml | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
# required so the PR triggers workflow runs | |
token: ${{ secrets.GH_CQ_BOT }} | |
branch: chore/sort-files | |
base: main | |
title: "chore: Sort files" | |
commit-message: "chore: Sort files" | |
body: This PR was created by a scheduled workflow to sort files to avoid git conflicts. | |
author: cq-bot <[email protected]> | |
labels: automerge |