Skip to content

Commit d7d7349

Browse files
authored
Merge pull request #628 from github/ewgenius/test-branch
Use pull_request event for actions triggering
2 parents b40475a + 0331e9e commit d7d7349

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Lint Code Base
22

33
on:
4-
push:
4+
pull_request:
55
branches-ignore:
66
- 'master'
77

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Test and build
22

3-
on: [push]
3+
on: [pull_request]
44

55
jobs:
66
build:
@@ -16,7 +16,7 @@ jobs:
1616
run: |
1717
sudo apt-get update -y
1818
sudo apt-get install -y devscripts debhelper moreutils fakeroot jq pigz
19-
wget "https://storage.googleapis.com/shellcheck/shellcheck-v0.7.0.linux.x86_64.tar.xz"
19+
wget "https://github.com/koalaman/shellcheck/releases/download/v0.7.0/shellcheck-v0.7.0.linux.x86_64.tar.xz"
2020
tar --xz -xvf "shellcheck-v0.7.0.linux.x86_64.tar.xz"
2121
sudo cp shellcheck-v0.7.0/shellcheck /usr/bin/shellcheck
2222
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)