├── .github ├── actionlint.yml ├── dependabot.yml └── workflows │ ├── draft-release.yml │ ├── integration.yml │ ├── publish.yml │ ├── release.yml │ └── unit.yml ├── .gitignore ├── .prettierrc.js ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── action.yml ├── dist └── main │ ├── 101.index.js │ ├── 669.index.js │ ├── 816.index.js │ └── index.js ├── eslint.config.mjs ├── package.json ├── src ├── client.ts ├── main.ts └── reference.ts ├── tests └── reference.test.ts └── tsconfig.json /.github/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/actionlint.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @google-github-actions/maintainers 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/action.yml -------------------------------------------------------------------------------- /dist/main/101.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/dist/main/101.index.js -------------------------------------------------------------------------------- /dist/main/669.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/dist/main/669.index.js -------------------------------------------------------------------------------- /dist/main/816.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/dist/main/816.index.js -------------------------------------------------------------------------------- /dist/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/dist/main/index.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/package.json -------------------------------------------------------------------------------- /src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/src/client.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/src/reference.ts -------------------------------------------------------------------------------- /tests/reference.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/tests/reference.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-github-actions/get-secretmanager-secrets/HEAD/tsconfig.json --------------------------------------------------------------------------------