Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from devnook/devnook-action
Browse files Browse the repository at this point in the history
Devnook action
  • Loading branch information
devnook committed Sep 23, 2022
2 parents 16d5a66 + e9f1b06 commit f6ee812
Show file tree
Hide file tree
Showing 304 changed files with 26,746 additions and 2,714 deletions.
2 changes: 2 additions & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const locales = require('./site/_data/site.json').locales;

// Collections
const algoliaCollection = require('./site/_collections/algolia');
const authors = require('./site/_collections/authors');
const feedsCollection = require('./site/_collections/feeds');
const tagsCollection = require('./site/_collections/tags');
const extensionsReferenceCollection = require('./site/_collections/reference');
Expand Down Expand Up @@ -109,6 +110,7 @@ module.exports = eleventyConfig => {
addCollectionByDirectory(eleventyConfig, locale, 'articles');
});
eleventyConfig.addCollection('algolia', algoliaCollection);
eleventyConfig.addCollection('authors', authors);
eleventyConfig.addCollection('feeds', feedsCollection);
eleventyConfig.addCollection('tags', tagsCollection);
eleventyConfig.addCollection('reference', extensionsReferenceCollection);
Expand Down
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ module.exports = {
parserOptions: {
sourceType: 'module',
},
globals: {
ga: true,
},
env: {
browser: true,
node: true,
Expand Down
13 changes: 13 additions & 0 deletions .github/actions/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: 'Hello World'
description: 'Greet someone and record the time'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
required: true
default: 'World'
outputs:
time: # id of output
description: 'The time we greeted you'
runs:
using: 'node16'
main: 'index.js'
Loading

0 comments on commit f6ee812

Please sign in to comment.