update-auto-assign-config #137
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 is a Workflow to update the configuration file for the auto-assign.yml workflow | |
name: Update-Auto-Assign-Config | |
# Controls when the action will run. Triggers the workflow on a POST Request | |
on: | |
repository_dispatch: | |
types: [update-auto-assign-config] | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# 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: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Update the config | |
- name: Update the config | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Christian Morford-Waite" | |
git checkout -b update-assign-by-files-config | |
- name: Download the updated configuration file | |
uses: carlosperate/[email protected] | |
with: | |
file-url: ${{ secrets.SSW_ASSIGN_BY_FILES_URL }} | |
file-name: "assign-by-files.yml" | |
location: "./.github" | |
- name: Create the Pull Request | |
run: | | |
git add .github/assign-by-files.yml | |
git commit -m "Updated Auto add PR reviewer config" | |
git push --set-upstream origin update-assign-by-files-config | |
hub pull-request --no-edit --base main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |