Skip to content

Commit

Permalink
feat: metrics action
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwa committed Dec 17, 2023
1 parent 7633b23 commit 0016769
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/languages.yaml
@@ -0,0 +1,53 @@
name: Build metrics

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Checkout action code
uses: actions/checkout@v4
with:
repository: lbwa/github-metrics
ref: main
token: ${{ secrets.ACCESS_TOKEN }}
path: ./.github/actions/github-metrics

- name: Setup Node.js
uses: actions/setup-node@v4 # https://github.com/actions/setup-node
with:
node-version: 20

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Prepare metrics
run: |
cd ./.github/actions/github-metrics
pnpm i
pnpm build
- name: Generate metrics
uses: ./.github/actions/github-metrics

- name: Push artifacts
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git status
git add public
git commit -m 'chore(schedule): update metrics'

0 comments on commit 0016769

Please sign in to comment.