updates to workflow stuff #1
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
# This workflow deploys The Language Hub on a successful PR | |
name: auto-merge | |
on: | |
pull_request: | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
target: minor | |
github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
# name: CI | |
# # Controls when the action will run. Triggers the workflow on push or pull request events | |
# on: | |
# pull_request: | |
# branches: [learn-data] | |
# # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
# jobs: | |
# merge: | |
# # The type of runner that the job will run on | |
# runs-on: ubuntu-latest | |
# # Steps represent a sequence of tasks that will be executed as part of the job | |
# steps: | |
# - uses: actions/checkout@v2 | |
# with: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
# - uses: ahmadnassri/[email protected] | |
# with: | |
# target: patch | |
# token: ${{ secrets.ADMIN_GITHUB_TOKEN }} |