-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: changed README to reflect changes in multigitminder-linguist.yml
- Loading branch information
1 parent
6f4bdba
commit 19d05c1
Showing
1 changed file
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,13 +138,12 @@ jobs: | |
# Checkout | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# linguist | ||
- name: Linguist Action | ||
uses: fabasoad/[email protected] | ||
id: linguist | ||
with: | ||
path: './' | ||
percentage: true | ||
# Enry | ||
- name: Setup Enry | ||
uses: fabasoad/[email protected] | ||
- name: Run Enry | ||
id: enry | ||
run: echo ::set-output name=languages::"{$(enry | sed 's/^\(.*\)\t\(.*\)$/\"\2\":\"\1\"/' | paste -sd "," -)}" | ||
# multigitminder | ||
- name: multigitminder | ||
uses: HaydenMacDonald/[email protected] | ||
|
@@ -154,7 +153,7 @@ jobs: | |
AUTH_TOKEN: ${{ secrets.BEEMINDER_AUTH_TOKEN }} | ||
GOAL: YOUR_GOAL_NAME_HERE | ||
TARGET_LANGS: YOUR_TARGET_LANGUAGES_HERE ## e.g. "['python', 'dockerfile', 'javascript']" or simply Python | ||
REPO_LANGS: ${{ steps.linguist.outputs.data }} | ||
REPO_LANGS: ${{ steps.enry.outputs.languages }} | ||
``` | ||
|
||
|