We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aeb1398 + 2c4c1f9 commit f221cddCopy full SHA for f221cdd
.github/workflows/update-fls.yaml
@@ -0,0 +1,23 @@
1
+name: Update FLS
2
+on:
3
+ schedule:
4
+ - cron: "05 0 * * *"
5
+ workflow_dispatch:
6
+jobs:
7
+ update-fls:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Check out the repo
11
+ uses: actions/checkout@v2
12
+ - name: Update FLS
13
+ uses: ./make.py --update-spec-lock-file
14
+ - name: Create Pull Request
15
+ uses: peter-evans/create-pull-request@v4
16
+ with:
17
+ commit-message: Cloud - Update available list
18
+ title: Update FLS (automated PR)
19
+ body: Update FLS (automated PR)
20
+ base: main
21
+ labels: automated-pr
22
+ branch: update-fls
23
+ delete-branch: true
0 commit comments