Github Actions
A Github Actions workflow exists that can be used to automatically sync your rides on a schedule (by default once a day).
⬇️ Install
The following steps will walk you through:
- Creating an account on GitHub
- Creating a personal copy of the P2G repo
- Configuring your personal P2G copy
- Setting up the P2G Github Action to run on a scehdule or on demand
1. Fork the Repository
The easiest way to use the action is to simply create a fork of the repo using the Fork
button.
- Create an account on GitHub
- Navigate to the P2G repo
- In the upper right hand corner, click the button that says
Fork
- Make note of or bookmark the url to your forked copy so that you’ll be able to easily find it again later when you’re ready to sync.
- Continue on to the Secrets instructions below
2. Setup Secrets
Once you've created your fork, you'll need to set a number of secrets in your repository. Secrets are a tool for storing sensitive information our Action will need (like email and password) in a way that is private and not visible to others.
- From your forked copy of P2G, click the
Settings
- Then, on the side nav, select
Secrets
and thenActions
. - Continue on to the Action Permissions instructions below, then come back here
From this point on you can add secrets by clicking the New repository secret
button at the top right.
Secret Name | Value |
---|---|
P2G_PELOTON__EMAIL |
The email address you use to login to Peloton |
P2G_PELOTON__PASSWORD |
The password that you use to login to Peloton |
P2G_GARMIN__EMAIL |
The email address that you use to login to Garmin |
P2G_GARMIN__PASSWORD |
The password that you use to log into Garmin |
Action Permissions
In order for our newly created Action to run, we need to ensure it has the right permissions configured.
- From your forked copy of P2G, click the
Settings
tab - Navigate to the settings for
Actions > General
- Under
Action Permissions
choose the 4th radio button titled: "Allow, and select non- , actions and reusable workflows". - Under the same radio button, check the checkbox to "Allow actions created by GitHub"
3. Running the Action
Once you've configured your secrets, you can then navigate to the Actions
tab within your repository.
- Enable actions for your fork.
- You can now run the
Sync workflow
manually
To have tha action run on a schedule set the cron
line in the ./github/workflows/sync_peloton_to_garmin.yml
file.
4. Configuration
Nearly all of your configuration is done in this file ./github/workflows/sync_peloton_to_garmin.yml
. The only exception is for Secret
data which is configured using the Secrets feature of GitHub.
You can learn more about customizing your configuration over in the Configuration Section.
⬆️ Updating
- Make a copy of your current configuration in
.github/workflows/sync_peloton_to_garmin.yml
as you will need to reapply these changes after updating. - From the home page of your forked repository, there should be a button to
Sync fork
, click this to pull in the latest changes from the original repo.- If prompted always choose the latest new changes coming in over any customization you have done. You can always re-apply your customization afterwards.
- Go back to your
.github/workflows/sync_peloton_to_garmin.yml
and re-apply any changes from step 1.
❌ Uninstalling
- From your fokred copy of P2G, click the
Settings
tab - Under
General
scoll all the way to the bottom of the page to theDanger Zone
section - Click
Delete this repository
and follow the guided steps
Danger
This is non-recoverable. Any and all customizations will be lost. You can re-install P2G again by starting over.
#️⃣ Changing Versions
- In your forked copy of P2G navigate to
./github/workflows/sync_peloton_to_garmin.yml
- Find this line
- The identifier
console-stable
can be edited to any of the supported tags
Warning
Attempting to use configuration or data from a later version of P2G with an older version is not guaranteed to work. You may need to reconfigure your instance.
👪 Multiple Users
Have each person follow the install steps here.
🚧 Limitations
Due to technical limitations, Garmin accounts protected by MFA/2FA are not supported with this install method.