Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a1e64ef734 |
@@ -1,18 +1,19 @@
|
||||
name: CI 🔨
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: ["main"]
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
branches: ["**"]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm install --production
|
||||
- run: "./test.sh"
|
||||
- uses: ./
|
||||
name: "Check container builds"
|
||||
with:
|
||||
format: shell
|
||||
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '21 9 * * 1'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
|
||||
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
|
||||
# queries: security-extended,security-and-quality
|
||||
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||
|
||||
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
||||
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
||||
|
||||
# - run: |
|
||||
# echo "Run, Build Application using script"
|
||||
# ./location_of_script_within_repo/buildscript.sh
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2
|
||||
@@ -1,62 +1,22 @@
|
||||
name: Deploy 🚀
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["main"]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
branches: ["main", "deploy-test"]
|
||||
|
||||
jobs:
|
||||
# Build job
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Pages
|
||||
uses: actions/configure-pages@v5
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm i --production
|
||||
|
||||
- name: Build Site
|
||||
run: |
|
||||
mkdir ./_site
|
||||
cp favicon.ico ./_site
|
||||
touch ./_site/.nojekyll
|
||||
node action.js html ./_site/index.html
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: "./_site"
|
||||
|
||||
# Deployment job
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
- uses: actions/checkout@v2
|
||||
- run: mkdir gh-pages
|
||||
- run: cp favicon.ico gh-pages
|
||||
- uses: ./
|
||||
with:
|
||||
format: html
|
||||
output: ./gh-pages/index.html
|
||||
- run: "find ./gh-pages"
|
||||
- uses: peaceiris/[email protected]
|
||||
with:
|
||||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
publish_dir: gh-pages
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
node_modules
|
||||
_site
|
||||
@@ -1 +0,0 @@
|
||||
* @actions/maintainers
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
FROM node:12
|
||||
|
||||
WORKDIR /opt/humans.txt
|
||||
|
||||
COPY . /opt/humans.txt
|
||||
|
||||
RUN npm i --production
|
||||
|
||||
ENV FORCE_COLOR=3
|
||||
|
||||
ENTRYPOINT ["bash", "/opt/humans.txt/run.sh"]
|
||||
@@ -1,12 +1,6 @@
|
||||
# GitHub Actions humans.txt
|
||||
|
||||
[Lists out](https://actions.github.io/humans.txt) the humans who work, or worked, on the GitHub Actions product.
|
||||
|
||||
## Contributing
|
||||
|
||||
Add yourself via PR if you work or worked on the product ❤️
|
||||
|
||||
To respect each individual's privacy, do not add anyone to this list without asking them first.
|
||||
[Lists out](https://actions.github.io/humans.txt) the humans who work, or worked, on the GitHub Actions product. Add yourself via PR if you work or worked on the product ❤️
|
||||
|
||||
## Inputs
|
||||
|
||||
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
name: 'GitHub Actions humans.txt'
|
||||
description: 'List out the humans who help feed and tend the robots of GitHub Actions'
|
||||
inputs:
|
||||
format:
|
||||
description: 'How to output the people of actions - txt, json, html or ascii'
|
||||
default: 'ascii'
|
||||
output:
|
||||
description: 'Where to output the file - stdout otherwise'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
args:
|
||||
- "${{ inputs.format }}"
|
||||
- "${{ inputs.output }}"
|
||||
+28
-148
@@ -3,163 +3,43 @@
|
||||
# - name - string - your name
|
||||
# - alum - boolean - whether you no longer work on Actions
|
||||
humans:
|
||||
- name: "Adrian Mato Gondelle"
|
||||
- name: "Ajay Krishna Nalisetty"
|
||||
alum: true
|
||||
- name: "Alberto Gimeno"
|
||||
alum: true
|
||||
- name: "Allan Guigou"
|
||||
- name: "Amarilis Dias"
|
||||
alum: true
|
||||
- name: "Andrew Appleton"
|
||||
- name: Mona Lisa Octocat
|
||||
honorary_human: true
|
||||
- name: "Matt Burke"
|
||||
alum: true
|
||||
- name: "Angela Rivera"
|
||||
alum: true
|
||||
- name: "Anna Rosenthal"
|
||||
alum: true
|
||||
- name: "Anthony Sterling"
|
||||
alum: true
|
||||
- name: "Antoine Grondin"
|
||||
alum: true
|
||||
- name: "Aris Acoba"
|
||||
- name: "Bassem Dghaidi"
|
||||
- name: "Belinda Vennam"
|
||||
alum: true
|
||||
- name: "Beth Brennan"
|
||||
- name: "Bethany Janos"
|
||||
alum: true
|
||||
- name: "Brian Cristante"
|
||||
alum: true
|
||||
- name: "Brittany Ellich"
|
||||
alum: true
|
||||
- name: "Bryan MacFarlane"
|
||||
- name: "Cameron Booth"
|
||||
alum: true
|
||||
- name: "Catherine Osadciw"
|
||||
alum: true
|
||||
- name: "Cedric Wille"
|
||||
alum: true
|
||||
- name: "Chad Kimes"
|
||||
alum: true
|
||||
- name: "Christina Guo"
|
||||
alum: true
|
||||
- name: "Christopher Schleiden"
|
||||
alum: true
|
||||
- name: "Cory Miller"
|
||||
alum: true
|
||||
- name: "Crystal Tenn"
|
||||
alum: true
|
||||
- name: "Dan Rigby"
|
||||
alum: true
|
||||
- name: "David Daly"
|
||||
alum: true
|
||||
- name: "Dylan Smith"
|
||||
alum: true
|
||||
- name: "Edwin Sirko"
|
||||
- name: "Erez Testiler"
|
||||
alum: true
|
||||
- name: "Eric Sciple"
|
||||
- name: "Erika Eggemeyer"
|
||||
alum: true
|
||||
- name: "Felipe Suero"
|
||||
alum: true
|
||||
- name: "Florian Wagner"
|
||||
alum: true
|
||||
- name: "Francesco Renzi"
|
||||
alum: true
|
||||
- name: "Guðmundur Bjarni Ólafsson"
|
||||
alum: true
|
||||
- name: "Hayden Faulds"
|
||||
alum: true
|
||||
- name: "Iheanyi Ekechukwu"
|
||||
alum: true
|
||||
- name: "Isaac Shalom"
|
||||
alum: true
|
||||
- name: "Jacob Wallraff"
|
||||
- name: "Jason Long"
|
||||
alum: true
|
||||
- name: "Javier Perez"
|
||||
alum: true
|
||||
- name: "Jean-Philippe André"
|
||||
alum: true
|
||||
- name: "Jeff Martin"
|
||||
- name: "Jeroen Rietveld"
|
||||
alum: true
|
||||
- name: "Joanna Krzek-Lubowiecka"
|
||||
- name: "Johanan Idicula"
|
||||
alum: true
|
||||
- name: "Joel Ambass"
|
||||
alum: true
|
||||
- name: "Jonathan Clem"
|
||||
alum: true
|
||||
- name: "Jonathan Tamsut"
|
||||
alum: true
|
||||
- name: "John Mills"
|
||||
alum: true
|
||||
- name: "John Wesley Walker III"
|
||||
- name: "Joris Abalea"
|
||||
alum: true
|
||||
- name: "Josh Gross"
|
||||
alum: true
|
||||
- name: "Julian Dunn"
|
||||
alum: true
|
||||
- name: "Julio Barba"
|
||||
alum: true
|
||||
- name: "Kamil Grzebien"
|
||||
alum: true
|
||||
- name: "Konrad Pabjan"
|
||||
alum: true
|
||||
- name: "Laura Yu"
|
||||
alum: true
|
||||
- name: "Liela Rotschy"
|
||||
alum: true
|
||||
- name: "Maggie Spletzer"
|
||||
alum: true
|
||||
- name: "Matt Burke"
|
||||
alum: true
|
||||
- name: "Melissa Xie"
|
||||
alum: true
|
||||
- name: "Mike Coutermarsh"
|
||||
alum: true
|
||||
- name: Mona Lisa Octocat
|
||||
honorary_human: true
|
||||
- name: "Nicholas Bergesen"
|
||||
- name: "Pete Wagner"
|
||||
alum: true
|
||||
- name: "Parker Moore"
|
||||
alum: true
|
||||
- name: "Patrick Ellis"
|
||||
- name: "Patrick Marsceill"
|
||||
alum: true
|
||||
- name: "Pete Wagner"
|
||||
alum: true
|
||||
- name: "Peter Tasker"
|
||||
alum: true
|
||||
- name: "Phani Raj"
|
||||
alum: true
|
||||
- name: "Philip Gai"
|
||||
- name: "PJ Quirk"
|
||||
- name: "Ryan Troost"
|
||||
- name: "Rob Herley"
|
||||
alum: true
|
||||
- name: "Ross Brodbeck"
|
||||
alum: true
|
||||
- name: "Seth Rylan Gainey"
|
||||
alum: true
|
||||
- name: "Sneha Kripanandan"
|
||||
- name: "Soe Tun"
|
||||
alum: true
|
||||
- name: "Sven Pfleiderer"
|
||||
alum: true
|
||||
- name: "Thomas Brumley"
|
||||
alum: true
|
||||
- name: "Melissa Xie"
|
||||
- name: "Jason Long"
|
||||
- name: "Iheanyi Ekechukwu"
|
||||
- name: "Christopher Schleiden"
|
||||
- name: "Cameron Booth"
|
||||
- name: "Alberto Gimeno"
|
||||
- name: "Tim Ruffles"
|
||||
alum: true
|
||||
- name: "Vallie Joseph"
|
||||
- name: "Andrew Appleton"
|
||||
alum: true
|
||||
- name: "Yaswanth Anantharaju"
|
||||
- name: "Hayden Faulds"
|
||||
- name: "Anthony Sterling"
|
||||
- name: "Jonathan Clem"
|
||||
- name: "Jeroen Rietveld"
|
||||
- name: "Mike Coutermarsh"
|
||||
- name: "Thomas Brumley"
|
||||
- name: "Brian Cristante"
|
||||
- name: "Yang Cao"
|
||||
- name: "Yena Kim"
|
||||
alum: true
|
||||
- name: "Yujin Shin"
|
||||
- name: "Bryan MacFarlane"
|
||||
- name: "Josh Gross"
|
||||
- name: "Guðmundur Bjarni Ólafsson"
|
||||
alum: true
|
||||
- name: "Zachary Taylor"
|
||||
- name: "Beth Brennan"
|
||||
- name: "PJ Quirk"
|
||||
- name: "Chad Kimes"
|
||||
- name: "Phani Raj"
|
||||
- name: "Konrad Pabjan"
|
||||
- name: "Adrian Mato Gondelle"
|
||||
- name: "Patrick Marsceill"
|
||||
|
||||
Generated
+27
-48
@@ -1,96 +1,75 @@
|
||||
{
|
||||
"name": "humans.txt",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"dependencies": {
|
||||
"chalk": "3.0.0",
|
||||
"yaml": "1.7.2"
|
||||
"lockfileVersion": 1,
|
||||
"dependencies": {
|
||||
"@babel/runtime": {
|
||||
"version": "7.7.7",
|
||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.7.tgz",
|
||||
"integrity": "sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==",
|
||||
"requires": {
|
||||
"regenerator-runtime": "^0.13.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/runtime": {
|
||||
"version": "7.27.3",
|
||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.3.tgz",
|
||||
"integrity": "sha512-7EYtGezsdiDMyY80+65EzwiGmcJqpmcZCojSXaRgdrBaGtWTgDZKq69cPIVped6MkIM78cTQ2GOiEYjwOlG4xw==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/color-name": {
|
||||
"@types/color-name": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
|
||||
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
|
||||
},
|
||||
"node_modules/ansi-styles": {
|
||||
"ansi-styles": {
|
||||
"version": "4.2.0",
|
||||
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.0.tgz",
|
||||
"integrity": "sha512-7kFQgnEaMdRtwf6uSfUnVr9gSGC7faurn+J/Mv90/W+iTtN0405/nLdopfMWwchyxhbGYl6TC4Sccn9TUkGAgg==",
|
||||
"dependencies": {
|
||||
"requires": {
|
||||
"@types/color-name": "^1.1.1",
|
||||
"color-convert": "^2.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/chalk": {
|
||||
"chalk": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
||||
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
||||
"dependencies": {
|
||||
"requires": {
|
||||
"ansi-styles": "^4.1.0",
|
||||
"supports-color": "^7.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/color-convert": {
|
||||
"color-convert": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
||||
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
||||
"dependencies": {
|
||||
"requires": {
|
||||
"color-name": "~1.1.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=7.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/color-name": {
|
||||
"color-name": {
|
||||
"version": "1.1.4",
|
||||
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
||||
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
||||
},
|
||||
"node_modules/has-flag": {
|
||||
"has-flag": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
||||
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
|
||||
},
|
||||
"node_modules/supports-color": {
|
||||
"regenerator-runtime": {
|
||||
"version": "0.13.3",
|
||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz",
|
||||
"integrity": "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw=="
|
||||
},
|
||||
"supports-color": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
||||
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
||||
"dependencies": {
|
||||
"requires": {
|
||||
"has-flag": "^4.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
}
|
||||
},
|
||||
"node_modules/yaml": {
|
||||
"yaml": {
|
||||
"version": "1.7.2",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.7.2.tgz",
|
||||
"integrity": "sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==",
|
||||
"dependencies": {
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.6.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 6"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user