Skip to content

Commit

Permalink
Init to winit
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonEtco committed May 14, 2020
0 parents commit 269e094
Show file tree
Hide file tree
Showing 10 changed files with 7,020 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node CI

on:
pull_request:
push:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm ci
- run: npm test
- name: codecov
run: npx codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
110 changes: 110 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test
23 changes: 23 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Use the latest version of Node.js
#
# You may prefer the full image:
# FROM node
#
# or even an alpine image (a smaller, faster, less-feature-complete image):
# FROM node:alpine
#
# You can specify a version:
# FROM node:10-slim
FROM node:alpine

# Copy the package.json and package-lock.json
COPY package*.json ./

# Install dependencies
RUN npm ci

# Copy the rest of your action's code
COPY . .

# Run `node /index.js`
ENTRYPOINT ["node", "/index.js"]
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2020 Jason Etcovitch


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Build and tag action
12 changes: 12 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Sponsor Labels
description: Labels issues and pull requests if the author is a sponsor
inputs:
label:
description: The label to apply to the issue or pull request if the author is a sponsor.
default: sponsor 💖
runs:
using: docker
image: Dockerfile
branding:
icon: heart
color: red
11 changes: 11 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
coverage:
status:
project:
default:
# Fail the status if coverage drops by >= 3%
threshold: 3
patch:
default:
threshold: 3

comment: false
87 changes: 87 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
const fs = require('fs')
const path = require('path')
const { Toolkit } = require('actions-toolkit')
const semver = require('semver')

Toolkit.run(async tools => {
const { main } = tools.getPackageJSON()

const readFile = name => fs.promises.readFile(path.join(tools.workspace, name), 'utf8')
const [actionYaml, code] = await Promise.all([
readFile('action.yml'),
readFile(main)
])

const tree = await tools.github.git.createTree({
...tools.context.repo,
tree: [
{
path: 'action.yml',
mode: '100644',
type: 'blob',
content: actionYaml,
base_tree: tools.context.sha
},
{
path: main,
mode: '100644',
type: 'blob',
content: code,
base_tree: tools.context.sha
}
]
})

tools.log.complete('Tree created')

const commit = await tools.github.git.createCommit({
...tools.context.repo,
message: 'Automatic compilation',
tree: tree.data.sha,
parents: [tools.context.sha]
})

tools.log.complete('Commit created')

const { tag_name: tagName, draft } = tools.context.payload.release

await tools.github.git.updateRef({
...tools.context.repo,
ref: `tags/${tagName}`,
force: true,
sha: commit.data.sha
})

if (draft) {
return tools.exit.success('All done!')
}

const refName = `tags/v${semver.major(tagName)}`
tools.log.info(`Updating major version tag ${refName}`)
const { data: matchingRefs } = await tools.github.git.listMatchingRefs({
...tools.context.repo,
ref: refName
})

const matchingRef = matchingRefs.find((refObj) => {
return refObj.ref.endsWith(refName)
})

if (matchingRef !== undefined) {
await tools.github.git.updateRef({
...tools.context.repo,
force: true,
ref: refName,
sha: commit.data.sha
})
} else {
await tools.github.git.createRef({
...tools.context.repo,
ref: `refs/${refName}`,
sha: commit.data.sha
})
}
}, {
event: 'release',
secrets: ['GITHUB_TOKEN']
})
Loading

0 comments on commit 269e094

Please sign in to comment.