Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-48542: Update jenkins to exclude paulprice from getting notifications #1053

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/yamllint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint YAML Files

Check warning on line 1 in .github/workflows/yamllint.yaml

View workflow job for this annotation

GitHub Actions / lint

1:1 [document-start] missing document start "---"

on:

Check warning on line 3 in .github/workflows/yamllint.yaml

View workflow job for this annotation

GitHub Actions / lint

3:1 [truthy] truthy value should be one of [false, true]
push:
branches:
- main
Expand All @@ -10,12 +10,12 @@
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.12

- name: Install
run: pip install yamllint
Expand Down
2 changes: 1 addition & 1 deletion pipelines/lib/notify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ String jenkinsUserId() {
* @param jenkinsId String jenkins user id
*/
def warnMissingGithubUser(String token, String channel, String jenkinsId) {
def excludeList = ['PaulPrice', 'tgoldina']
def excludeList = ['paulprice', 'tgoldina']
if (excludeList.contains(jenkinsId)) {
return
}
Expand Down
Loading