You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
@dailydotdev/devcard
2.0.1
GitHub Action for fetching the devcard from daily.dev
- name: devcard
uses: dailydotdev/[email protected]
with:
devcard_id: ${{ secrets.DEVCARD_ID }}
devcard_id
: this is the unique hash of the devcard, it can be found in the URL of the devcard.- e.g.
https://api.daily.dev/devcards/0b156485612243bfa39092f30071e276.png
where the devcard_id is0b156485612243bfa39092f30071e276
- Can be found at https://app.daily.dev/devcard
- e.g.
devcard_id
: GitHub Token used to commit the devcardcommit_branch
: The branch to commit the devcard to. Defaults to the branch of the action.commit_message
: The commit message to use when committing the devcard. Defaults toUpdate ${filename}
.- You can use
${filename}
in the message to refer to the filename of the devcard.
- You can use
commit_filename
: The filename to commit the devcard to. Defaults todevcard.svg
.- If you want to save the devcard as a PNG, you can use
devcard.png
instead, or any other filename ending in.png
.
- If you want to save the devcard as a PNG, you can use
dryrun
: If set totrue
, the action will run as normal, but not actually commit the devcard
This will save the devcard as PNG and commit to a separate branch named devcard
.
- name: devcard
uses: dailydotdev/[email protected]
with:
devcard_id: ${{ secrets.DEVCARD_ID }}
commit_branch: devcard
commit_filename: devcard.png
commit_message: "chore: update ${filename}"