Skip to content

Bump golang.org/x/crypto from 0.31.0 to 0.35.0 in /StoreHUB-auth #23

Bump golang.org/x/crypto from 0.31.0 to 0.35.0 in /StoreHUB-auth

Bump golang.org/x/crypto from 0.31.0 to 0.35.0 in /StoreHUB-auth #23

name: Update Contributors
on:
push:
branches:
- main
pull_request:
types: [closed]
jobs:
update-contributors:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install All Contributors CLI
run: npm install -g all-contributors-cli
- name: Configure Git
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
- name: Update Contributors
run: |
npx all-contributors add ${{ github.actor }} code
git add .all-contributorsrc README.md
git commit -m "docs: update contributors list" || echo "No changes to commit"
git push