feat: fixed fund wallet modal typography and create wager typography #11
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: Update Contributors | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
update-contributors: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Set up pnpm global bin directory | |
run: | | |
export PNPM_HOME=$HOME/.local/share/pnpm | |
export PATH=$PNPM_HOME:$PATH | |
echo "PNPM_HOME=$PNPM_HOME" >> $GITHUB_ENV | |
echo "$PNPM_HOME" >> $GITHUB_PATH | |
pnpm setup | |
- name: Install All Contributors CLI | |
run: pnpm add -g all-contributors-cli | |
- name: Verify Installation | |
run: all-contributors --version | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Add Contributor | |
run: | | |
all-contributors add ${GITHUB_ACTOR} code | |
all-contributors generate | |
- name: Commit and Push Changes | |
run: | | |
git config --global user.name "github-actions [bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -m "docs: add ${GITHUB_ACTOR} as a contributor" || echo "No changes to commit" | |
git push |