Skip to content

Commit

Permalink
Merge pull request #1093 from larskanis/ci-master-only
Browse files Browse the repository at this point in the history
CI: Run jobs on master branch and pull requests only
  • Loading branch information
larskanis committed Apr 1, 2024
2 parents 7506844 + ff02edf commit 1e051cd
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
@@ -1,5 +1,17 @@
name: CI
on: [push, pull_request]
on:
workflow_dispatch:
schedule:
- cron: "0 5 * * 3" # At 05:00 on Wednesday # https://crontab.guru/#0_5_*_*_3
push:
branches:
- master
tags:
- "*.*.*"
pull_request:
types: [opened, synchronize]
branches:
- "*"
permissions:
contents: read

Expand Down

0 comments on commit 1e051cd

Please sign in to comment.