Skip to content

DNM: Temp for Snapshot #1361

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

Open
wants to merge 51 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
ee1a853
Releasing v1.20.0
steve-the-edwards Jun 2, 2025
dd4222f
Finish releasing v1.20.0
steve-the-edwards Jun 2, 2025
2cc53de
Create sandbox-type background for app
wenli-cai Jun 4, 2025
8e11a48
Create json parsing using moshi
wenli-cai Jun 4, 2025
c6e7d99
Draw workflow nodes through the given classes
wenli-cai Jun 4, 2025
065d0c2
WIP provide temporary solution for drawing arrows between each workfl…
wenli-cai Jun 4, 2025
f2f9f00
Apply changes from connectedCheckShardMatrixYamlUpdate checkVersionIs…
wenli-cai Jun 5, 2025
554387a
Fixed arrow positioning
wenli-cai Jun 5, 2025
1146b59
WIP drawing arrows
wenli-cai Jun 5, 2025
a775475
Removed use of arrows in project, cleaned up code
wenli-cai Jun 5, 2025
94a32aa
fix bug that limited the area for .pointerInput
wenli-cai Jun 5, 2025
6b30019
create upload button for downloaded json/txt files
wenli-cai Jun 5, 2025
a1dccc1
minor QOL changes in appearance
wenli-cai Jun 5, 2025
600f205
Apply changes from apiDump
wenli-cai Jun 5, 2025
fb633f5
clean up imports and comments to ready PR
wenli-cai Jun 6, 2025
41dfd46
Fix ktlint issues
wenli-cai Jun 6, 2025
406a66e
Apply changes from apiDump
wenli-cai Jun 6, 2025
ea2d3e3
Edits made for PR comments
wenli-cai Jun 10, 2025
6fc7d83
Apply changes from apiDump
wenli-cai Jun 10, 2025
0286d37
Fix more PR feedback
wenli-cai Jun 10, 2025
9d0256a
Removed .kotlin/ metadata
wenli-cai Jun 10, 2025
6a62896
Include a detailed view of node via side panel
wenli-cai Jun 6, 2025
f4a6d14
Clean up project structure
wenli-cai Jun 6, 2025
945b124
Clean up project structure
wenli-cai Jun 6, 2025
d1ec50f
Change file names.
wenli-cai Jun 9, 2025
54d7b92
Edit composables to align with their responsibilities
wenli-cai Jun 10, 2025
a23f6cd
Add scroll bar functionality to allow indexing different states withi…
wenli-cai Jun 10, 2025
3cb49d8
Bugfix with switching between different files and UI change for top row
wenli-cai Jun 11, 2025
2103453
Add missing Kdocs
wenli-cai Jun 11, 2025
f6f29d7
Apply changes from apiDump
wenli-cai Jun 11, 2025
d0ac1c2
Fix for PR comments
wenli-cai Jun 11, 2025
0c03e93
Apply changes from apiDump
wenli-cai Jun 12, 2025
7775cd2
More fix for PR comments
wenli-cai Jun 13, 2025
711ddfe
Improve error handling
wenli-cai Jun 14, 2025
38e1293
Apply changes from apiDump
wenli-cai Jun 14, 2025
ed7e572
Final fixes for PR comments
wenli-cai Jun 16, 2025
ecaeb84
Apply changes from apiDump
wenli-cai Jun 16, 2025
708cb84
Update RELEASING.md
rjrjr Jun 4, 2025
0e0cff9
Introduces Activity.workflowContentView, workflowContentViewOrNull
rjrjr Jun 6, 2025
fc9bdbd
1338: Clean up caches after WorkflowNode torn down
steve-the-edwards Jun 10, 2025
dd264bf
1314: Update Sonatype Central Secrets
steve-the-edwards May 21, 2025
291fe24
Exception reporter disentangling for Android UI code
rjrjr Jun 13, 2025
71e4470
Use workflow-pr-fixer app for Token Auth on fixup commits
steve-the-edwards Jun 18, 2025
3debe1a
Updated ComposeScreen idioms in samples.
rjrjr Jun 18, 2025
9d3bb7f
Persist checkout credentials for push
steve-the-edwards Jun 19, 2025
aada303
1311: Dispatcher Tests for RenderWorkflowIn on Android
steve-the-edwards Jun 19, 2025
91ceaa3
Move non-ui Android RenderWorkflow concerns to workflow-runtime-android
steve-the-edwards Jun 19, 2025
c7bb831
1311:Use Compose's AndroidUiDispatcher.Main to conflate actions in ru…
steve-the-edwards Jun 19, 2025
5e11504
Migrate Parametrized Tests to Burst
steve-the-edwards Jun 20, 2025
316c44c
DRAIN_EXCLUSIVE_ACTIONS implementation
steve-the-edwards Jun 20, 2025
afc6bc9
DNM: Temp for Snapshot
steve-the-edwards Jun 24, 2025
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
11 changes: 8 additions & 3 deletions .github/actions/gradle-task-with-commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ inputs:
commit-message:
description: 'The commit message to use if changes are generated'
default: ''
access-token:
description: 'The access token to use for checkouts.'
restore-cache-key:
description: 'The unique identifier for the associated cache. Any other consumers or producers for this cache must use the same name.'
default: 'null'
Expand All @@ -31,7 +33,9 @@ runs:
id: can-push
shell: bash
run: |
if [[ "${{ env.GITHUB_REF_PROTECTED }}" == 'true' ]]; then
if [[ "${{ inputs.access-token }}" == '' ]]; then
echo "can_push=false" >> $GITHUB_OUTPUT
elif [[ "${{ env.GITHUB_REF_PROTECTED }}" == 'true' ]]; then
echo "can_push=false" >> $GITHUB_OUTPUT
elif [[ "${{ github.event.pull_request.head.repo.full_name }}" != "${{ github.repository }}" ]]; then
echo "can_push=false" >> $GITHUB_OUTPUT
Expand All @@ -40,10 +44,11 @@ runs:
fi

# ensure that we have the actual branch checked out. By default, actions/checkout is headless.
- name: check out with PAT
- name: check out with the generated app token
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
if: steps.can-push.outputs.can_push == 'true'
with:
token: ${{ inputs.access-token }}
ref: ${{ github.head_ref }}
fetch-depth: 0

Expand All @@ -70,7 +75,7 @@ runs:

- name: commit ${{ inputs.fix-task }} changes
if: steps.can-push.outputs.can_push == 'true'
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: ${{ steps.set-commit-message.outputs.commit-message }}
commit_options: '--no-verify --signoff'
Expand Down
Loading