Skip to content

Commit

Permalink
change on events for workflows to push only
Browse files Browse the repository at this point in the history
- any push to any branch since our workflows are very short
- no need for `workflow_dispatch` (manual trigger) for now me thinks
- pretty sure `push` supercedes `pull_request`
  • Loading branch information
TheAfroOfDoom committed Dec 29, 2023
1 parent ac42309 commit 3b34936
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/datapack.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: datapack

on:
pull_request:
push:
branches:
- main
on: [push]

# TODO(37): add linting
jobs:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/scripts.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: scripts

on:
pull_request:
push:
branches:
- main
on: [push]

jobs:
format:
Expand Down

0 comments on commit 3b34936

Please sign in to comment.