We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0640d28 commit 9c6962eCopy full SHA for 9c6962e
.github/workflows/generate-query-help-docs.yml
@@ -22,11 +22,17 @@ jobs:
22
build:
23
runs-on: ubuntu-latest
24
steps:
25
- - name: Clone github/codeql
+ - if: github.event.inputs.ref
26
+ name: Clone github/codeql (user defined ref)
27
+ uses: actions/checkout@v2
28
+ with:
29
+ path: codeql
30
+ ref: ${{ github.event.inputs.ref }}
31
+ - if: github.event.inputs.ref == ''
32
+ name: Clone github/codeql (default ref)
33
uses: actions/checkout@v2
34
with:
35
path: codeql
- ref: '{{ github.event.inputs.ref }}'
36
- name: Clone github/codeql-go
37
38
0 commit comments