-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Irregular Action - Testing on Branch ( Fixes #233 )
- Loading branch information
James Brundage
committed
Sep 22, 2024
1 parent
95bee0c
commit 9229113
Showing
2 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
@{ | ||
name = 'Use Irregular Action' | ||
uses = 'StartAutomating/Irregular@master' | ||
id = 'Irregular' | ||
} | ||
|
||
|
||
name = 'Run Irregular (from main)' | ||
if = '${{github.ref_name == ''master''}}' | ||
uses = 'StartAutomating/Irregular@main' | ||
id = 'IrregularMain' | ||
}, | ||
@{ | ||
name = 'Run Irregular (on branch)' | ||
if = '${{github.ref_name != ''master''}}' | ||
uses = './' | ||
id = 'IrregularBranch' | ||
} |