Skip to content

betterscientificsoftware/adgcz_project-activity

 
 

Repository files navigation

Github Project Activity

Using Github Project kanban boards for tracking issues? For a given number of recent days, this action creates a summary of kanban board activity, both as an email and an artifact, showing issues that moved columns, issues added/reopened/closed/removed as well as those newly commented on.

For example, schedule the action to run each Monday morning to receive a summary of the past 7 days activity.

See a sample summary (once viewing the sample, mouse over the link of an issue to see a tool tip summarising its flow through kanban columns): * sample email content

Inputs

token

Required Github Token

smtp-server

Required SMTP Server

smtp-server-port

Required SMTP Server Port

auth-user

Required Sender user email

auth-pwd

Required Sender user password (for gmail, you can use an app password)

email-from

Required Sender from name

recipient-emails

Required Recipient email addresses (comma-separated)

project-numbers

Required Project Numbers (comma-separated) or all

days

Required Days back (number of days to query from current date backwards)

Outputs

Generates email with project activity summary and sends to specified recipients. Uploads an artifact file associated to each action run, with the same project activity summary.

Example usage

on:
  schedule:
    # * is a special character in YAML so you have to quote this string
    - cron:  '1 8 * * 1'
jobs:
    testing-project:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v2
            - name: Project changes past 7 days
              uses: adgcz/project-activity@v1.0.0
              id: project
              with:
                  token: ${{ secrets.GITHUB_TOKEN }}
                  smtp-server: "smtp.gmail.com"
                  smtp-server-port: "587"
                  auth-user: ${{ secrets.EMAIL_USER }}
                  auth-pwd: ${{ secrets.EMAIL_PWD }}
                  email-from: ${{ secrets.EMAIL_FROM }}
                  recipient-emails: ${{ secrets.RECIPIENT_EMAILS }}
                  project-numbers: all
                  days: 7
            - name: Upload summary to artifacts
              uses: actions/upload-artifact@v1
              with:
                  name: kanban
                  path: kanban

About

Copy of adgcz/project-activity action, which seems to have disappeared

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 82.7%
  • HTML 17.3%