Skip to content

Commit

Permalink
Merge pull request #1349 from hackforla/1176-roster-action
Browse files Browse the repository at this point in the history
1176 Monthly roster action
  • Loading branch information
sydneywalcoff committed May 4, 2024
2 parents a27b02b + 0affd5d commit e112edb
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/update-roster.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Monthly roster update

on:
schedule:
- cron: "0 0 1 * *" # Runs on the 1st of every month at 00:00 UTC

jobs:
duplicate-issue:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Duplicate Issue
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const issueNumber = 1065;
const issue = await github.rest.issues.get({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber
});
const months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
const currentMonth = months[new Date().getMonth()];
const newIssue = await github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: `${currentMonth} ${issue.data.title}`,
body: issue.data.body,
labels: issue.data.labels.map(label => label.name),
milestone: issue.data.milestone ? issue.data.milestone.number : undefined
});

0 comments on commit e112edb

Please sign in to comment.