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.
1 parent b480a97 commit 7e27ffeCopy full SHA for 7e27ffe
README.md
@@ -13,3 +13,26 @@ Gradle Lock Dependency Submission Action
13
# [optional ] Token used to authenticate with the GitHub API. Defaults to the GITHUB_TOKEN secret.
14
token: ${{ secrets.CODEQL_SUMMARY_GENERATOR_TOKEN }}
15
```
16
+
17
+#### Workflow Example
18
19
+```yaml
20
+name: Gradle Lock Dependency Submission Action
21
+on:
22
+ push:
23
+ branches: [main]
24
25
+permissions:
26
+ contents: write # needed
27
28
+jobs:
29
+ gradle-lock:
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v2
33
34
+ # ... generate gradle.lock file
35
36
+ - name: Gradle Lock Dependency Submission Action
37
+ uses: GeekMasher/gradle-lock-dependency-submission-action@main
38
+```
0 commit comments