-
-
Notifications
You must be signed in to change notification settings - Fork 51
Setting Up the Action with a YouTube API Key
Jonah Lawrence edited this page Oct 19, 2022
·
4 revisions
Some features of YouTube Cards require an API key.
Below you will find the steps to obtain an API key, add it as a repository secret, and use it in a GitHub action.
- Go to https://console.developers.google.com/project and sign in
- Click "Create Project"
- Name your project and click "Create"
- Click the "APIs & Services" link from the top-left navigation menu and select your project
- Click "Enable APIs and Services"
- Search for "YouTube Data API"
- Enable "YouTube Data API v3"
- In the left panel select "Credentials"
- Click "Create Credentials", then "API key"
- Copy your API key
- Navigate to your GitHub repository and head to the
Settings
page
- In the sidebar, select
Secrets > Actions
in theSecurity
section
- Click the
New repository secret
button to create a new repository secret
- Enter
YOUTUBE_API_KEY
as the name, and your key as secret
- Click
Add Secret
and it should now appear under your repository secrets
To access your secret, use ${{ secrets.YOUTUBE_API_KEY }}
in your GitHub action.
Example:
steps:
- uses: DenverCoder1/github-readme-youtube-cards@main
with:
channel_id: UCipSxT7a3rn81vGLw9lqRkg
comment_tag_name: YOUTUBE-CARDS
youtube_api_key: ${{ secrets.YOUTUBE_API_KEY }}
show_duration: true