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

Initial action implemention #1

Merged
merged 78 commits into from
Oct 10, 2024
Merged
Changes from 1 commit
Commits
Show all changes
78 commits
Select commit Hold shift + click to select a range
a8b859d
Implement action
omus Aug 12, 2024
fe50061
fixup! Implement action
omus Aug 12, 2024
7839ee4
Use once per job
omus Aug 13, 2024
a14de77
fixup! Use once per job
omus Aug 13, 2024
b56e5a8
Re-runs can cause extra uploads
omus Aug 13, 2024
f52de76
Always download artifacts
omus Aug 13, 2024
55f56ac
Typo
omus Aug 13, 2024
03229d8
Add race condition test
omus Aug 13, 2024
9ac2cc7
Ensure artifact name is present
omus Aug 13, 2024
32aae82
Test re-run non-failed scenario
omus Aug 13, 2024
e254786
Create job-context action
omus Aug 13, 2024
94ae218
Use job-id in artifact
omus Aug 13, 2024
580e723
fixup! Create job-context action
omus Aug 13, 2024
466c693
fixup! Create job-context action
omus Aug 13, 2024
df70a91
fixup! Use job-id in artifact
omus Aug 13, 2024
b2b42fd
Clone hotfix
omus Aug 13, 2024
232e023
fixup! Clone hotfix
omus Aug 13, 2024
dabf4aa
fixup! Clone hotfix
omus Aug 13, 2024
14e66b3
fixup! Clone hotfix
omus Aug 13, 2024
babf07a
fixup! Clone hotfix
omus Aug 13, 2024
b3dfd9f
Embed job-id in artifact
omus Aug 14, 2024
1cdd475
fixup! Embed job-id in artifact
omus Aug 14, 2024
4708d15
Completed job calculation
omus Aug 14, 2024
318fa17
fixup! Completed job calculation
omus Aug 14, 2024
cb042e8
fixup! Completed job calculation
omus Aug 14, 2024
ac39c9c
Iterating
omus Aug 14, 2024
0d77b77
Experiment
omus Aug 14, 2024
1fb0f5c
fixup
omus Aug 14, 2024
88a3f91
Iterate
omus Aug 14, 2024
ac86c14
Update race condition test
omus Aug 14, 2024
e9ed398
Iterate
omus Aug 14, 2024
ee6b449
Wait step
omus Aug 14, 2024
1543679
fixup
omus Aug 14, 2024
e3c1fa9
Only write output on final job
omus Aug 14, 2024
b648f37
fixup
omus Aug 14, 2024
6057379
New wait attempt
omus Aug 15, 2024
db50d33
Create empty file
omus Aug 15, 2024
7ae8c82
fixup
omus Aug 15, 2024
322ec8d
fixup
omus Aug 15, 2024
baa1e5d
fixup
omus Aug 15, 2024
a7f38d2
fixup
omus Aug 15, 2024
6148172
Debug re-run
omus Aug 15, 2024
5578a13
Jobs API call rework
omus Aug 15, 2024
831af4d
fixup! Jobs API call rework
omus Aug 15, 2024
b5edfa9
fixup! Jobs API call rework
omus Aug 15, 2024
6fef98a
Add design documentation
omus Aug 15, 2024
eb81926
Use separate step for executed jobs
omus Aug 15, 2024
ba490b2
fixup! Use separate step for executed jobs
omus Aug 15, 2024
d0e33c1
Refactor
omus Aug 16, 2024
0c95ee0
Debug
omus Aug 16, 2024
a437729
fixup! Debug
omus Aug 16, 2024
4daa16a
Iterate
omus Aug 16, 2024
6686137
Debug
omus Aug 16, 2024
251102f
Debug
omus Aug 16, 2024
ec4b61a
Refactor jq join
omus Aug 16, 2024
089a526
fixup
omus Aug 16, 2024
253d9d1
Reduced debug logging
omus Aug 16, 2024
03f370f
Wait timing fix
omus Aug 16, 2024
a0b2d0d
Reduced debug logging
omus Aug 16, 2024
d4b97af
Make setup-complext pass
omus Aug 16, 2024
19cbf66
fixup
omus Aug 16, 2024
85b4eb2
Iterate on job-context
omus Aug 16, 2024
ce8da14
Use revised job-context
omus Aug 16, 2024
12594ff
fixup
omus Aug 16, 2024
d5745be
fixup
omus Aug 16, 2024
058ddcc
fixup
omus Aug 16, 2024
bd7ffad
fixup
omus Aug 16, 2024
50db99d
Update integration tests
omus Aug 16, 2024
a39c495
fixup
omus Aug 16, 2024
8596e79
Bug fix
omus Aug 16, 2024
4c8c049
Iterating on job-context
omus Aug 16, 2024
19ffc29
Use argjson instead of tonumber
omus Aug 16, 2024
d3aac25
Documentation updates
omus Aug 16, 2024
c5de515
Use external job-context
omus Aug 16, 2024
7c8e495
Create LICENSE
omus Aug 27, 2024
8ce78d3
Use tagged version of job-context
omus Sep 19, 2024
48365ab
Add branding
omus Oct 10, 2024
eaf8dd4
Add reasons for permission requirements
omus Oct 10, 2024
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
Prev Previous commit
Next Next commit
fixup! Embed job-id in artifact
omus committed Aug 14, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 1cdd475a03c14c5f3315a2a10fd05c753b2c28ec
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ runs:
run: |
input_json="$(yq -o=json <<<"${input_yaml:?}")"
jq -ne \
--argjson metadata "{\"job-id": ${job_id:?}}" \
--argjson metadata "{\"job-id\": ${job_id:?}}" \
--argjson outputs "${input_json:?}" \
'$ARGS.named' | tee -a job-output.json
env: