Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt authored Aug 7, 2024
1 parent bcb1ccf commit be911d5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/run_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ on:
required: true
type: number
description: The PR number
command:
command1:
required: true
type: string
description: The command to run
description: The first command to run
command2:
required: true
type: string
description: The second command to run
upload:
required: true
type: string
Expand All @@ -26,5 +30,6 @@ jobs:
with:
repository: ${{ inputs.repository }}
pr: ${{ inputs.pr }}
command: ${{ inputs.command }}
command1: ${{ inputs.command1 }}
command2: ${{ inputs.command2 }}
upload: ${{ inputs.upload }}
14 changes: 10 additions & 4 deletions .github/workflows/run_pr_delegate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ on:
required: true
type: string
description: The PR number
command:
command1:
required: true
type: string
description: The command to run
description: The first command to run
command2:
required: true
type: string
description: The second command to run
upload:
required: true
type: string
Expand All @@ -32,8 +36,10 @@ jobs:
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: false
- name: Run task
run: ${{ inputs.command }}
- name: Run task 1
run: ${{ inputs.command1 }}
- name: Run task 2
run: ${{ inputs.command2 }}
- uses: actions/upload-artifact@v4
with:
path: ${{ inputs.upload }}

0 comments on commit be911d5

Please sign in to comment.