Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/run_fetch_issues_on_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Run Fetch Issues on Pull Request

on:
pull_request:
branches:
- main

jobs:
fetch_issues:
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: "18"

- name: Install Node.js dependencies
run: npm install

- name: Run fetch_issues.js script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: node fetch_issues.mjs

- name: Commit and push changes
if: success() && steps.check-for-changes.outputs.changed == 'true'
run: |
git commit -m "Update good first issues list from GitHub Actions"
git push origin ${{ github.head_ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 8 additions & 0 deletions content/good-first-issues.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: "Good First Issues"
date: 2024-08-27
---

Here are some "Good First Issues" from the specified GitHub repositories:

{{< issues >}}
Loading
Loading