Skip to content

Commit

Permalink
ci(github-actions): fix rc testing workflow (#2033)
Browse files Browse the repository at this point in the history
# Description
## What is the current behavior?
<!-- Please describe the current behavior that you are modifying. -->

github actions fails to run rc testing workflow


<!--
Issues are required for both bug fixes and features.
Reference it using one of the following:

closes: #ISSUE
related: #ISSUE
-->


## What is the new behavior?
<!-- Please describe the behavior or changes that are being added by
this PR. -->
run the workflow without failure

## Does this introduce a breaking change?


### Checklist
- [ ] Created tests which fail without the change (if possible)
- [ ] Extended the README / documentation, if necessary
  • Loading branch information
Lee-W authored Sep 21, 2023
1 parent 0fe2054 commit e5cf304
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci-rc-test.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Test providers RC releases

on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
schedule:
- cron: "0 0,12 * * *"
workflow_dispatch:
Expand All @@ -14,25 +14,24 @@ on: # yamllint disable-line rule:truthy
rc_testing_branch: existing testing branch
(Either rc_testing_branch or issue_url is required, and you cannot give both.)
required: false
default: ''
default: ""
issue_url:
description: |
issue_url: the GitHub issue URL that tracks the status of Providers release
(Either rc_testing_branch or issue_url is required, and you cannot give both.)
required: false
base_git_rev:
description: 'The base git revision to test Providers RCs'
description: "The base git revision to test Providers RCs"
required: false
type: string
default: 'main'
default: "main"
defaults:
run:
working-directory: python-sdk

jobs:
check-airflow-provider-rc-release:
uses: astronomer/astronomer-providers/.github/workflows/reuse-wf-check-rc-release.yaml@main
working-directory: python-sdk
with:
rc_testing_branch: ${{ inputs.rc_testing_branch }}
issue_url: ${{ inputs.issue_url }}
Expand Down

0 comments on commit e5cf304

Please sign in to comment.