Skip to content

Commit

Permalink
Remove on: create from CI
Browse files Browse the repository at this point in the history
This doesn't appear to actually take a `tags` sub-argument, it's just
on-create of either a tag or a branch. This means that contributors
pushing to their own repositories with feature branches trigger builds,
but only on branch creation and not on further commits. This switches to
`on: push: tags` which should retain the behavior of running on tags.
  • Loading branch information
alexcrichton committed Mar 3, 2024
1 parent b36d0a7 commit a00beb8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: CI

on:
create:
tags:
push:
tags:
branches:
- main
- faster-ci
Expand Down

0 comments on commit a00beb8

Please sign in to comment.