Skip to content

Commit

Permalink
CI: on: pull_request and tags, not on main
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalandy committed May 9, 2022
1 parent b4e3cad commit 658ccab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 2 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
version:2
# you can add other package ecosystems here for granular control of security updates
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
# bundler, docker (FROM image), git submodules, go, npm, pip, terraform, all supported

version: 2
updates:
# Maintain dependencies for Actions
- package-ecosystem: "github-actions"
Expand All @@ -24,4 +20,4 @@ updates:
timezone: "America/New_York"
labels:
- ":game_die: dependencies"
- ":robot: bot"
- ":robot: bot"
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ name: ci

on:
push:
# We don't build on master or edge anymore. Only on PR and tags.
branches:
- "ci"
# Sequence of patterns matched against TAGS
tags:
- "[0-9]*"
- "ci_*"
paths-ignore:
- "CHANGELOG.md"
# Sequence of patterns matched against PR
# Sequence of patterns matched against every PR
pull_request:
schedule:
- cron: "0 5 * * *"
Expand Down

0 comments on commit 658ccab

Please sign in to comment.