Skip to content

Commit c0ade1b

Browse files
[CI] Redirect and fix email-check workflow (#13375)
1bed639 resolved a merge conflict in .github/workflows/email-check.yaml by reintroducing a removed "uses" key. However, this makes for an invalid configuration. This commit removes the invalid conflict resolution. Additionally, it changes the check for repository in the workflow to require intel/llvm. This should make it run as part of our CI. --------- Signed-off-by: Larsen, Steffen <[email protected]>
1 parent 16da4ec commit c0ade1b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/email-check.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
validate_email:
1313
runs-on: ubuntu-latest
14-
if: github.repository == 'llvm/llvm-project'
14+
if: github.repository == 'intel/llvm'
1515
steps:
1616
- name: Fetch LLVM sources
1717
uses: actions/checkout@v4
@@ -28,7 +28,6 @@ jobs:
2828
2929
- name: Validate author email
3030
if: ${{ endsWith(steps.author.outputs.EMAIL, 'noreply.github.com') }}
31-
uses: actions/github-script@v7
3231
env:
3332
COMMENT: >-
3433
⚠️ We detected that you are using a GitHub private e-mail address to contribute to the repo.<br/>

0 commit comments

Comments
 (0)