Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #18
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
on: pull_request | |
name: generate-contributor-table | |
jobs: | |
contributors-job: | |
name: Generate contributor table | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎️ Checkout repository | |
uses: actions/checkout@v2 | |
# Make changes to contributor table here | |
- name: Contribute List | |
uses: akhilmhdh/contributors-readme-action@v2.2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
# Make pull request here | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
title: Update contributor table | |
body: Credit new contributors by updating README | |
base: ${{ github.head_ref }} | |
branch: main |