-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (31 loc) · 1001 Bytes
/
nitpick.yml
File metadata and controls
36 lines (31 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Run nitpick to sync CI configs
on:
schedule:
- cron: '0 3 * * 1' # Every Monday at 03:00 UTC
workflow_dispatch:
jobs:
nitpick:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Install nitpick
run: pipx install nitpick
- name: Run nitpick
run: nitpick fix || true
shell: bash
- name: Create Pull Request
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
commit-message: "ci(nitpick): Sync CI configs"
title: "ci(nitpick): Sync CI configs"
body: "Automated run of nitpick fix."
branch: "nitpick"
base: ${{ github.ref_name }}
labels: "nitpick"
reviewers: "linuxdaemon"
assignees: "linuxdaemon"
sign-commits: true