add mrc20 methods #293
Workflow file for this run
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: Generate Powered-By | |
on: | |
push: | |
jobs: | |
generate-powered-by: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
# Checkout code using massabot account | |
token: ${{ secrets.MASSABOTCLASSIC }} | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: https://registry.npmjs.org | |
- name: Install license-report and jq | |
run: | | |
sudo apt-get update -y && sudo apt-get install -y jq | |
sudo npm install -g license-report | |
- name: Install project dependencies | |
run: | | |
npm ci | |
- name: Generate Powered-By | |
run: | | |
./scripts/generate_powered-by.sh | |
- name: Commit Changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
token: ${{ secrets.MASSABOTCLASSIC }} | |
commit_message: "Generate powered-by" | |
file_pattern: "powered-by.md" | |
# Commit code using massabot account that can bypass push and MR restriction | |
commit_author: massabot <info@massa.net> |