We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0435c4d commit 793dee9Copy full SHA for 793dee9
.github/workflows/update-cli-schema.yml
@@ -2,8 +2,8 @@ name: Update cli schema
2
3
on:
4
push:
5
- branches:
6
- - main
+ # branches:
+ # - main
7
schedule:
8
- cron: '0 0 * * *'
9
@@ -28,13 +28,13 @@ jobs:
28
- name: Commit and push changes
29
run: |
30
git add .
31
- git diff --quiet && git diff --staged --quiet || git commit -m "Update oss friends"
+ git diff --quiet && git diff --staged --quiet || git commit -m "chore: Update CLI schema"
32
33
- name: Create or update pull request
34
uses: peter-evans/create-pull-request@v3
35
with:
36
token: ${{ secrets.GITHUB_TOKEN }}
37
- commit-message: 'Updating file'
+ commit-message: 'chore: Update CLI schema'
38
title: 'Cli schema update'
39
body: 'This is an automated daily update.'
40
branch: cli-schema-update
0 commit comments