Skip to content

Commit

Permalink
[CI] Redirect and fix email-check workflow (#13375)
Browse files Browse the repository at this point in the history
intel/llvm@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]>
  • Loading branch information
steffenlarsen authored Apr 12, 2024
1 parent 16da4ec commit c0ade1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/email-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
validate_email:
runs-on: ubuntu-latest
if: github.repository == 'llvm/llvm-project'
if: github.repository == 'intel/llvm'
steps:
- name: Fetch LLVM sources
uses: actions/checkout@v4
Expand All @@ -28,7 +28,6 @@ jobs:
- name: Validate author email
if: ${{ endsWith(steps.author.outputs.EMAIL, 'noreply.github.com') }}
uses: actions/github-script@v7
env:
COMMENT: >-
⚠️ We detected that you are using a GitHub private e-mail address to contribute to the repo.<br/>
Expand Down

0 comments on commit c0ade1b

Please sign in to comment.