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

integration-test #1

Merged
merged 25 commits into from
Jan 22, 2024
Merged
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Group Open PRs and Merge
uses: ./
id: group-and-merge
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
target-label: stage-ready
target-label: staging
main-branch: 'main'
integration-branch: 'staging'
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ with:
integration-branch: 'staging'
main-branch: 'main'
```


TEST
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
target-label:
description: 'Target label to fetch for PRs'
required: true
default: 'stage-ready'
default: 'staging'
repo-token:
description: 'Github token secret'
required: true
Expand All @@ -28,5 +28,5 @@ outputs:
temp-branch:
description: 'Temp branch with all grouped PRs.'
runs:
using: 'node18'
main: 'index.js'
using: 'node20'
main: 'dist/index.js'
Loading