Merge pull request #98 from KomodoPlatform/file-author-data #16
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: Get file and author data | |
on: | |
push: | |
branches: ["dev"] | |
jobs: | |
update_configs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Generate configs | |
shell: bash | |
run: node utils/get_file_author_data.js | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: update file and author data | |
committer: GitHub <noreply@github.com> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
branch: file-author-data | |
delete-branch: true | |
title: "[BOT] Update file and author data" | |
body: | | |
- File and author data updated on merge to dev | |
labels: | | |
autogenerated | |
reviewers: smk762, gcharang, endrilickollari | |
draft: false |