Skip to content

Commit

Permalink
Merge pull request #53 from Psypher1/learn-data
Browse files Browse the repository at this point in the history
updates to workflow stuff
  • Loading branch information
Psypher1 authored Dec 18, 2023
2 parents 92e9e98 + b5ca05a commit 2a41900
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
4 changes: 0 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,3 @@ accessibility is impacted and tested._
- [ ] 👍 yes
- [ ] 🙅 no, because they aren't needed
- [ ] 🙋 no, because I need help

## [optional] Are there any post deployment tasks we need to perform?

## [optional] What gif best describes this PR or how it makes you feel?
38 changes: 26 additions & 12 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
# This workflow deploys The Language Hub on a successful PR
name: CI
name: auto-merge

# 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
auto-merge:
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/action-dependabot-auto-merge@v2.6.6
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: patch
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
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/action-dependabot-auto-merge@v2.6.6
# with:
# target: patch
# token: ${{ secrets.ADMIN_GITHUB_TOKEN }}

0 comments on commit 2a41900

Please sign in to comment.