Skip to content

Commit d6f5ab6

Browse files
authored
fix(workflows): disable required checks, remove [skip ci]
1 parent 16bb13e commit d6f5ab6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
if: "github.ref_type == 'branch' && !contains(github.event.head_commit.message, '[skip ci]')"
10+
if: github.ref_type == 'branch'
1111
steps:
1212
- uses: actions/checkout@v2
1313

.github/workflows/delete-runs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: clean workflow runs
22

33
on:
44
schedule:
5-
- cron: '0 0 1 * *'
5+
- cron: '0 0 * * 0'
66
workflow_dispatch:
77
inputs:
88
retention_days:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
git config --global user.email "leonhardmasche@gmail.com"
3535
3636
git add -A
37-
git commit -m "[skip ci] chore(versions): index minAppVersion for latest release"
37+
git commit -m "chore(versions): index minAppVersion for latest release"
3838
git push origin master
3939
4040
- name: Build

0 commit comments

Comments
 (0)