Skip to content

Commit bdf7d43

Browse files
authored
Merge pull request Place1#101 from DasSkelett/fix/always-run-linting
Always run linting workflow
2 parents a573dad + 73c8d91 commit bdf7d43

File tree

4 files changed

+7
-18
lines changed

4 files changed

+7
-18
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- master
77
pull_request:
8-
types: [opened, synchronize, reopened]
98

109
env:
1110
REGISTRY: ghcr.io

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
1-
# For most projects, this workflow file will not need changing; you simply need
2-
# to commit it to your repository.
3-
#
4-
# You may wish to alter this file to override the set of languages analyzed,
5-
# or to provide custom queries or build logic.
6-
#
7-
# ******** NOTE ********
8-
# We have attempted to detect the languages in your repository. Please check
9-
# the `language` matrix defined below to confirm you have the correct set of
10-
# supported CodeQL languages.
11-
#
121
name: "CodeQL"
132

143
on:
154
push:
16-
branches: [ master ]
5+
branches:
6+
- master
177
pull_request:
188
# The branches below must be a subset of the branches above
19-
branches: [ master ]
9+
branches:
10+
- master
2011
schedule:
2112
- cron: '45 9 * * 1'
2213

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish Docker image
22
on:
33
push:
44
branches:
5-
- 'master'
5+
- master
66
tags:
77
- 'v*.*.*'
88

.github/workflows/linting.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ name: Linting
22

33
on:
44
push:
5-
branches: [master, main]
5+
branches:
6+
- master
67
tags-ignore: ['**']
7-
paths-ignore: ['**.md']
88
pull_request:
9-
paths-ignore: ['**.md']
109

1110
jobs: # Docs: <https://git.io/JvxXE>
1211
gitleaks:

0 commit comments

Comments
 (0)