This code does not have any dependencies that are specific to any specific version of ubuntu. So instead of testing on a specific version and then needing to do work to keep the versions up-to-date, we switch to the ubuntu-latest target which should be sufficient for testing purposes. This work is being done as a part of https://github.com/openedx/platform-roadmap/issues/377 closes https://github.com/openedx/frontend-app-authn/issues/1299
26 lines
625 B
YAML
26 lines
625 B
YAML
name: autoupdate
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types: [ labeled ]
|
|
branches:
|
|
- master
|
|
jobs:
|
|
autoupdate:
|
|
name: autoupdate
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker://chinthakagodawita/autoupdate-action:v1
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
DRY_RUN: "false"
|
|
PR_FILTER: "labelled"
|
|
PR_LABELS: "autoupdate"
|
|
EXCLUDED_LABELS: "dependencies,wontfix"
|
|
MERGE_MSG: "Branch was auto-updated."
|
|
RETRY_COUNT: "5"
|
|
RETRY_SLEEP: "300"
|
|
MERGE_CONFLICT_ACTION: "fail"
|