You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GitHub Gists is a very easy way to publish Markdown / HTML content on the internet.
Use Case
Publish rendered content (Markdown / HTML) as a public or private GitHub Gist.
Requirements
configuration attributes:
github_token -- a required string attribute, that contains a valid GitHub Auth token. It will be used in the HTTP header during API calls: Authorization: Bearer $TOKEN (docs)
execution attributes:
description - (optional) a string attribute, treated as a Go-template string
filename - (optional) a string attribute, a key for a file content to be included in the gist. Treated as a Go-template string
if not set, the value will be <template-name>.<format-ext>, where <template-name> is the name of the Fabric document template, and <format-ext> is a file extension for a selected content format (md / html)
make_public - (optional) a bool attribute, false by default (!)
gist_id - (optional) a string attribute. If provided, the existing gist is updated (using gist update endpoint) instead of creating a new gist
Notes:
the data sink supports only markdown and HTML output formats
after the context is published, the data sink should output an info log message with a link to the gist created / updated
Description
GitHub Gists is a very easy way to publish Markdown / HTML content on the internet.
Use Case
Publish rendered content (Markdown / HTML) as a public or private GitHub Gist.
Requirements
github_token
-- a required string attribute, that contains a valid GitHub Auth token. It will be used in the HTTP header during API calls:Authorization: Bearer $TOKEN
(docs)description
- (optional) a string attribute, treated as a Go-template stringfilename
- (optional) a string attribute, a key for a file content to be included in the gist. Treated as a Go-template string<template-name>.<format-ext>
, where<template-name>
is the name of the Fabric document template, and<format-ext>
is a file extension for a selected content format (md
/html
)make_public
- (optional) a bool attribute,false
by default (!)gist_id
- (optional) a string attribute. If provided, the existing gist is updated (using gist update endpoint) instead of creating a new gistNotes:
Additional Information
data.github_issues
plugin #37The text was updated successfully, but these errors were encountered: