Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hzitoun committed Jun 28, 2022
1 parent 65e5a70 commit d632ee5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/work.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
push:
paths:
- '**.java'
tags:
- v2
jobs:
test_schedule:
runs-on: ubuntu-latest
steps:
- name: Not on Monday or Wednesday
if: github.event.schedule != '30 5 * * 1,3'
run: echo "This step will be skipped on Monday and Wednesday"
- name: Every time
run: echo "This step will always run"

0 comments on commit d632ee5

Please sign in to comment.