├── .dockerignore ├── .editorconfig ├── .env ├── .github ├── FUNDING.yml ├── dependabot.yml ├── linters │ ├── .checkov.yml │ ├── .commit-lint.yml │ ├── .grype.yaml │ ├── .lychee.toml │ ├── .markdown-lint.yml │ ├── .mega-linter.yml │ └── .yamllint.yml └── workflows │ ├── pull_request_target.yml │ └── push.yml ├── .gitignore ├── .pandoc.yml ├── .release.json ├── .semantic.json ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── colophon.yml ├── docker-compose.yml ├── docs ├── README.md └── README.template ├── package.json ├── src ├── index.js └── lib │ ├── index.js │ └── runs.js └── test └── fixtures └── payload.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/linters/.checkov.yml -------------------------------------------------------------------------------- /.github/linters/.commit-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/linters/.commit-lint.yml -------------------------------------------------------------------------------- /.github/linters/.grype.yaml: -------------------------------------------------------------------------------- 1 | check-for-app-update: false 2 | exclude: 3 | - '**/package-lock.json' 4 | -------------------------------------------------------------------------------- /.github/linters/.lychee.toml: -------------------------------------------------------------------------------- 1 | exclude_path = [".github"] 2 | -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/linters/.mega-linter.yml -------------------------------------------------------------------------------- /.github/linters/.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/linters/.yamllint.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/workflows/pull_request_target.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.gitignore -------------------------------------------------------------------------------- /.pandoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.pandoc.yml -------------------------------------------------------------------------------- /.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.release.json -------------------------------------------------------------------------------- /.semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/.semantic.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/action.yml -------------------------------------------------------------------------------- /colophon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/colophon.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/docs/README.template -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/runs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/src/lib/runs.js -------------------------------------------------------------------------------- /test/fixtures/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadnassri/action-workflow-queue/HEAD/test/fixtures/payload.json --------------------------------------------------------------------------------