-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collect mql-mimic-exempt Comments & Sent to MQL Mimic (#1199)
- Loading branch information
1 parent
e703838
commit 797e0f5
Showing
2 changed files
with
75 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,12 +45,12 @@ jobs: | |
|
||
- name: Get PR branch | ||
uses: alessbell/[email protected] # Fork of xt0rted/pull-request-comment-branch, see https://github.com/xt0rted/pull-request-comment-branch/issues/322 | ||
id: comment-branch | ||
id: comment_branch | ||
|
||
- name: Wait for Rule Validation Succeed | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ steps.comment-branch.outputs.head_sha }} | ||
ref: ${{ steps.comment_branch.outputs.head_sha }} | ||
check-name: 'Rule Tests and ID Updated' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
wait-interval: 10 | ||
|
@@ -70,13 +70,13 @@ jobs: | |
steps: | ||
- name: Get PR branch | ||
uses: alessbell/[email protected] # Fork of xt0rted/pull-request-comment-branch, see https://github.com/xt0rted/pull-request-comment-branch/issues/322 | ||
id: comment-branch | ||
id: comment_branch | ||
|
||
- name: Checkout PR branch | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ${{ steps.comment-branch.outputs.head_owner }}/${{ steps.comment-branch.outputs.head_repo }} | ||
ref: ${{ steps.comment-branch.outputs.head_ref }} | ||
ref: ${{ steps.comment_branch.outputs.head_ref }} | ||
fetch-depth: 0 | ||
path: source | ||
|
||
|
@@ -117,7 +117,7 @@ jobs: | |
# Used to testing_sha key in the rule. If the PR is updated multiple times without changing all files, we'll | ||
# always use the latest sha. | ||
export sha=${{ steps.comment-branch.outputs.head_sha }} | ||
export sha=${{ steps.comment_branch.outputs.head_sha }} | ||
# Copy any file that was added/changed/modified to the destination git folder (we could do this with git checkout | ||
# but it doesn't seem any simpler). And then add testing metadata. | ||
|