├── .github ├── labels.yaml └── workflows │ └── sync-labels.yaml ├── CODE_OF_CONDUCT.md ├── DCO ├── MAINTAINERS.md └── README.md /.github/labels.yaml: -------------------------------------------------------------------------------- 1 | # Configuration file to declarative configure labels 2 | # Ref: https://github.com/EndBug/label-sync#Config-files 3 | 4 | - name: bug 5 | description: Something isn't working 6 | color: '#d73a4a' 7 | - name: documentation 8 | description: Improvements or additions to documentation 9 | color: '#0075ca' 10 | - name: duplicate 11 | description: This issue or pull request already exists 12 | color: '#cfd3d7' 13 | - name: enhancement 14 | description: New feature or request 15 | color: '#a2eeef' 16 | - name: good first issue 17 | description: Good for newcomers 18 | color: '#7057ff' 19 | - name: help wanted 20 | description: Extra attention is needed 21 | color: '#008672' 22 | - name: invalid 23 | description: This doesn't seem right 24 | color: '#e4e669' 25 | - name: question 26 | description: Further information is requested 27 | color: '#d876e3' 28 | - name: wontfix 29 | description: This will not be worked on 30 | color: '#ffffff' 31 | -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yaml: -------------------------------------------------------------------------------- 1 | name: Sync labels 2 | on: 3 | workflow_dispatch: 4 | push: 5 | branches: 6 | - main 7 | paths: 8 | - .github/labels.yaml 9 | 10 | permissions: 11 | issues: write 12 | 13 | jobs: 14 | labels: 15 | name: Run sync 16 | 17 | runs-on: ubuntu-latest 18 | 19 | steps: 20 | - uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8 # v2.3.2 21 | with: 22 | # Configuration file 23 | # NB: URL as a workaround for https://github.com/EndBug/label-sync/issues/204 24 | config-file: https://raw.githubusercontent.com/getsops/community/main/.github/labels.yaml 25 | # Strictly declarative 26 | delete-other-labels: true 27 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project adheres to the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md). 4 | 5 | By participating, you are expected to honor this code. 6 | -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- 1 | Developer Certificate of Origin 2 | Version 1.1 3 | 4 | Copyright (C) 2004, 2006 The Linux Foundation and its contributors. 5 | 660 York Street, Suite 102, 6 | San Francisco, CA 94110 USA 7 | 8 | Everyone is permitted to copy and distribute verbatim copies of this 9 | license document, but changing it is not allowed. 10 | 11 | 12 | Developer's Certificate of Origin 1.1 13 | 14 | By making a contribution to this project, I certify that: 15 | 16 | (a) The contribution was created in whole or in part by me and I 17 | have the right to submit it under the open source license 18 | indicated in the file; or 19 | 20 | (b) The contribution is based upon previous work that, to the best 21 | of my knowledge, is covered under an appropriate open source 22 | license and I have the right under that license to submit that 23 | work with modifications, whether created in whole or in part 24 | by me, under the same open source license (unless I am 25 | permitted to submit under a different license), as indicated 26 | in the file; or 27 | 28 | (c) The contribution was provided directly to me by some other 29 | person who certified (a), (b) or (c) and I have not modified 30 | it. 31 | 32 | (d) I understand and agree that this project and the contribution 33 | are public and that a record of the contribution (including all 34 | personal information I submit with it, including my sign-off) is 35 | maintained indefinitely and may be redistributed consistent with 36 | this project or the open source license(s) involved. 37 | -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # SOPS Maintainers 2 | 3 | In alphabetical order: 4 | 5 | - Hidde Beydals, Individual (GitHub: @hiddeco, Slack: hidde) 6 | - Andrew Block, Red Hat (GitHub: @sabre1041, Slack: Andrew Block) 7 | - Devin Buhl, Individual (GitHub: @onedr0p, Slack: Devin Buhl) 8 | - Felix Fontein, Individual (GitHub: @felixfontein, Matrix: felixfontein:matrix.org, Libera.Chat IRC: felixfontein) 9 | - Devin Stein, Individual (GitHub: @devstein) 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SOPS Community 2 | 3 | > **Note** 4 | > 5 | > After being [accepted into the CNCF as a Sandbox project][sandbox-application], 6 | > we are bootstrapping our way into a proper GitHub organization. This 7 | > effectively means this repository is still in its infancy, while we work 8 | > through the [onboarding process][sandbox-onboarding]. 9 | 10 | [sandbox-application]: https://github.com/cncf/sandbox/issues/28 11 | [sandbox-onboarding]: https://github.com/cncf/toc/issues/1057 12 | --------------------------------------------------------------------------------