Skip not working test. Seems to be doing an external call (#1526) #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Pull request auto update | |
on: | |
push: | |
branches: | |
- "develop" | |
jobs: | |
refresh_stale_prs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create App token | |
id: create_token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ vars.DATAHUB_PORTAL_PR_APP_ID }} | |
private-key: ${{ secrets.DATAHUB_PORTAL_PR_RW }} | |
- name: Automatically update PR | |
uses: adRise/[email protected] | |
with: | |
token: ${{ steps.create_token.outputs.token }} | |
base: "develop" | |
required_approval_count: 0 | |
require_passed_checks: false | |
allow_ongoing_checks: true | |
sort: "created" | |
direction: "desc" | |
require_auto_merge_enabled: false |