Merge branch 'main' into aeisenberg/add-codeowners
This commit is contained in:
commit
9c28349a87
3 changed files with 4 additions and 4 deletions
2
.github/update-release-branch.py
vendored
2
.github/update-release-branch.py
vendored
|
|
@ -122,7 +122,7 @@ def get_commit_difference(repo):
|
||||||
|
|
||||||
# Is the given commit the automatic merge commit from when merging a PR
|
# Is the given commit the automatic merge commit from when merging a PR
|
||||||
def is_pr_merge_commit(commit):
|
def is_pr_merge_commit(commit):
|
||||||
return commit.committer.login == 'web-flow' and len(commit.parents) > 1
|
return commit.committer is not None and commit.committer.login == 'web-flow' and len(commit.parents) > 1
|
||||||
|
|
||||||
# Gets a copy of the commit message that should display nicely
|
# Gets a copy of the commit message that should display nicely
|
||||||
def get_truncated_commit_message(commit):
|
def get_truncated_commit_message(commit):
|
||||||
|
|
|
||||||
4
.github/workflows/pr-checks.yml
vendored
4
.github/workflows/pr-checks.yml
vendored
|
|
@ -118,8 +118,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
config-file: ".github/codeql/codeql-config-packaging.yml"
|
config-file: ".github/codeql/codeql-config-packaging.yml"
|
||||||
languages: javascript
|
languages: javascript
|
||||||
# TODO: this is temporary until we have a release that includes the latest packaging work.
|
# TODO: this can be removed when cli v2.5.6 is released and available in the tool cache
|
||||||
tools: https://github.com/dsp-testing/aeisenberg-codeql-action-packaging/releases/download/codeql-bundle-20210606/codeql-bundle-linux64.tar.gz
|
tools: https://github.com/dsp-testing/aeisenberg-codeql-action-packaging/releases/download/codeql-bundle-20210615/codeql-bundle-linux64.tar.gz
|
||||||
|
|
||||||
- name: Build code
|
- name: Build code
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ name: Pack testing in the CodeQL Action
|
||||||
disable-default-queries: true
|
disable-default-queries: true
|
||||||
packs:
|
packs:
|
||||||
javascript:
|
javascript:
|
||||||
- dsp-testing/codeql-pack1@0.0.3
|
- dsp-testing/codeql-pack1@0.0.4
|
||||||
- dsp-testing/codeql-pack2 # latest
|
- dsp-testing/codeql-pack2 # latest
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- tests
|
- tests
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue