├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── stale.yml └── workflows │ ├── ci.yml │ └── demo.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── dist └── index.js ├── images └── github-env-vars-action-social-preview.png ├── index.js ├── index.test.js └── package.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: FranzDiebold 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.github/workflows/demo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /images/github-env-vars-action-social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/images/github-env-vars-action-social-preview.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FranzDiebold/github-env-vars-action/HEAD/package.json --------------------------------------------------------------------------------