Skip to content

Commit 28dd8f8

Browse files
authored
Merge pull request #31 from hackebrot/update-actions-workflow-events
Update events that trigger the Actions workflow 🤖
2 parents 225e301 + a823048 commit 28dd8f8

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/labels.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ color = "ffeb95"
33
name = "bug"
44
description = "Bugs and problems with labels"
55

6+
[actions]
7+
color = "c792ea"
8+
name = "actions"
9+
description = "Tasks related to GitHub Actions"
10+
611
["code quality"]
712
color = "c792ea"
813
name = "code quality"

.github/workflows/run-checks.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
name: Run checks
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- "[0-9]+.[0-9]+.[0-9]+"
9+
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
10+
11+
pull_request:
12+
branches:
13+
- main
414

515
jobs:
616
tox:

0 commit comments

Comments
 (0)