├── .gitignore ├── LICENSE ├── README.md ├── gettext-flatpak ├── README.md ├── action.yml ├── check-diff.py └── entrypoint.sh ├── gettext-template ├── Dockerfile ├── README.md ├── action.yml ├── check-diff.py └── entrypoint.sh ├── release ├── Dockerfile ├── README.md ├── action.yml └── entrypoint.sh └── vala-lint ├── Dockerfile ├── README.md ├── action.yml └── entrypoint.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/README.md -------------------------------------------------------------------------------- /gettext-flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-flatpak/README.md -------------------------------------------------------------------------------- /gettext-flatpak/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-flatpak/action.yml -------------------------------------------------------------------------------- /gettext-flatpak/check-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-flatpak/check-diff.py -------------------------------------------------------------------------------- /gettext-flatpak/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-flatpak/entrypoint.sh -------------------------------------------------------------------------------- /gettext-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-template/Dockerfile -------------------------------------------------------------------------------- /gettext-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-template/README.md -------------------------------------------------------------------------------- /gettext-template/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-template/action.yml -------------------------------------------------------------------------------- /gettext-template/check-diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-template/check-diff.py -------------------------------------------------------------------------------- /gettext-template/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/gettext-template/entrypoint.sh -------------------------------------------------------------------------------- /release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/release/Dockerfile -------------------------------------------------------------------------------- /release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/release/README.md -------------------------------------------------------------------------------- /release/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/release/action.yml -------------------------------------------------------------------------------- /release/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/release/entrypoint.sh -------------------------------------------------------------------------------- /vala-lint/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/vala-lint/Dockerfile -------------------------------------------------------------------------------- /vala-lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/vala-lint/README.md -------------------------------------------------------------------------------- /vala-lint/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/vala-lint/action.yml -------------------------------------------------------------------------------- /vala-lint/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/actions/HEAD/vala-lint/entrypoint.sh --------------------------------------------------------------------------------