Skip to content

How to use Spotify plugin on the website #132

Locked Answered by lowlighter
Milo123459 asked this question in Q&A
Discussion options

You must be logged in to vote

Hello !

You just need use metrics as a GitHub action to actually be able to use all features.

Basically you create a new file in Milo123459/Milo123459/.github/workflows with at least the following :

(seems you're already familiar with workflows since you have already some in your repository, if not, you can follow README.md - ⚙️ Using GitHub Action on your profile repository (~5 min setup) and expand 💬 How to setup? section)

name: Metrics
on:
  # Schedule updates
  schedule: [{cron: "0 * * * *"}]
  # Lines below let you run workflow manually and on each commit
  push: {branches: ["master", "main"]}
  workflow_dispatch:
jobs:
  github-metrics:
    runs-on: ubuntu-latest
    steps:
      #

Replies: 9 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by lowlighter
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
2 participants
Converted from issue

This discussion was converted from issue #45 on February 18, 2021 11:23.