Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create isStagingDeployLocked action #1683

Merged
merged 45 commits into from
Mar 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3b0430b
Create isStagingDeployLocked action
roryabraham Mar 9, 2021
b63976c
Test new action in test workflow
roryabraham Mar 9, 2021
7081ffe
Echo output of test
roryabraham Mar 9, 2021
9f52ebf
Get rid of . in relative path
roryabraham Mar 9, 2021
bdff5bd
update ref'
roryabraham Mar 9, 2021
dee0aed
Fetch full git history'
roryabraham Mar 9, 2021
8ef0414
Move ref to checkout action
roryabraham Mar 9, 2021
34428d2
Rebuild GH actions
roryabraham Mar 9, 2021
9b26b5b
Update ref
roryabraham Mar 9, 2021
9b858a1
Commit bundled GH action
roryabraham Mar 9, 2021
a42783c
Update ref
roryabraham Mar 9, 2021
ca4d6d6
Merge branch 'master' into Rory-isStagingDeployLocked
roryabraham Mar 10, 2021
2bd9e7b
Use local libs and CJS instead of expensify-common
roryabraham Mar 10, 2021
b1ad3f7
Update ref
roryabraham Mar 10, 2021
ea293ac
Add more verbose error logging
roryabraham Mar 10, 2021
6e38b47
Use ref
roryabraham Mar 10, 2021
a921e45
make regular unit tests run after current action tests
roryabraham Mar 10, 2021
ed46ef9
Move error handling into action not JS lib
roryabraham Mar 10, 2021
15d8bf9
Update ref
roryabraham Mar 10, 2021
96e74ba
Do test request with ultra-verbose logging
roryabraham Mar 10, 2021
02dce95
Update ref
roryabraham Mar 10, 2021
94b71bb
Make request to Expensify.cash instead of issue repo
roryabraham Mar 10, 2021
5ce987f
Update ref
roryabraham Mar 10, 2021
0007f02
Merge branch 'master' into Rory-isStagingDeployLocked
roryabraham Mar 10, 2021
262f0b4
Reset action, wait for OSBotify to get E/E access
roryabraham Mar 10, 2021
7ec3290
update ref
roryabraham Mar 10, 2021
ae3302c
Merge branch 'Rory-MoveStagingDeployCashToECash' into Rory-isStagingD…
roryabraham Mar 10, 2021
4505559
Rebuild GH actions
roryabraham Mar 10, 2021
8a2c1a2
Update ref
roryabraham Mar 10, 2021
9d6ea0e
Rebuild GH actions
roryabraham Mar 10, 2021
2960e98
Update ref
roryabraham Mar 10, 2021
73cb31f
Reformat StagingDeployCash a bit
roryabraham Mar 10, 2021
313c8a3
Rebuild GH actions
roryabraham Mar 10, 2021
1b58c70
Update ref
roryabraham Mar 10, 2021
4ed14c3
Remove extra API call
roryabraham Mar 10, 2021
98a3165
Update ref
roryabraham Mar 10, 2021
0973316
Log output
roryabraham Mar 10, 2021
599eb1d
Update ref
roryabraham Mar 10, 2021
79c1167
Pluck name of label
roryabraham Mar 11, 2021
b6031eb
Update ref
roryabraham Mar 11, 2021
1e6a051
Reset test workflow
roryabraham Mar 11, 2021
e2ad720
Merge branch 'master' into Rory-isStagingDeployLocked
roryabraham Mar 11, 2021
d752e86
Reset test workflow checkout action
roryabraham Mar 11, 2021
2ba290d
Merge branch 'master' into Rory-isStagingDeployLocked
roryabraham Mar 12, 2021
4412e1d
Rebuild GH actions
roryabraham Mar 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/actions/isStagingDeployLocked/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Check if the StagingDeployCash is locked'
description: 'Checks if the open StagingDeployCash issue has the LockCashDeploys label'
inputs:
GITHUB_TOKEN:
description: Auth token for Expensify.cash Github
required: true
outputs:
IS_LOCKED:
description: Whether or not the open StagingDeployCash issue is locked.
runs:
using: 'node12'
main: 'index.js'
Loading