{"id":24388912,"url":"https://github.com/wunderflats/actions","last_synced_at":"2025-10-09T20:43:57.411Z","repository":{"id":42066771,"uuid":"238668422","full_name":"wunderflats/actions","owner":"wunderflats","description":"Useful actions for CI based workflow","archived":false,"fork":false,"pushed_at":"2025-01-10T08:53:21.000Z","size":2239,"stargazers_count":0,"open_issues_count":22,"forks_count":0,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-01-19T14:59:15.303Z","etag":null,"topics":["github-actions","github-actions-ci"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wunderflats.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-06T11:00:52.000Z","updated_at":"2025-01-10T08:53:24.000Z","dependencies_parsed_at":"2025-01-07T12:27:20.433Z","dependency_job_id":"1ec75082-e75f-4b5d-83e6-7ad7d0de3462","html_url":"https://github.com/wunderflats/actions","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wunderflats%2Factions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wunderflats%2Factions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wunderflats%2Factions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wunderflats%2Factions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wunderflats","download_url":"https://codeload.github.com/wunderflats/actions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243301123,"owners_count":20269286,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-actions","github-actions-ci"],"created_at":"2025-01-19T14:58:06.358Z","updated_at":"2025-10-09T20:43:57.403Z","avatar_url":"https://github.com/wunderflats.png","language":"TypeScript","readme":"# wunderflats/actions\n\nThis repository contains a set of helpful github actions created and maintained by Wunderflats GmbH.\n\n---\n\n## cancel-if-not-latest\n\nThis action cancels a workflow if it is not running on the last commit of a the event's `ref`. This can be used e.g. to prevent jobs from running on the non-latest push to a `main` or `master` branch.\n\n:warning: This only works in `push` events, not `pull_request`.\n\n#### Example\n\n```yaml\njobs:\n  deploy-everything:\n    permissions:\n      actions: read\n    steps:\n      - uses: wunderflats/actions/cancel-if-not-latest@master\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n---\n\n## slack-check-runs-notify\n\nA github action that sends a message to slack if one of the jobs failed\n\n#### Example:\n\n```\njobs:\n  some-job:\n    name: Do Something\n    steps:\n      - id: main task\n        run: echo do the task\n  some-other-job\n    name: Also doing something\n    steps:\n      - id: other task\n        run: echo do the task\n  notify:\n    name: notify\n    if: always() \u0026\u0026 !cancelled()\n    runs-on: ubuntu-latest\n    needs:\n      - some-job\n      - some-other-job\n    steps:\n      - name: notifying\n        uses: wunderflats/actions/slack-check-runs-notify@master\n        with:\n          GITHUB_RUN_ID: ${{ github.run_id }}\n          COMMIT_MESSAGE: ${{ github.event.head_commit.message }}\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          WEBHOOK_TOKEN: ${{ secrets.SLACK_TOKEN }}\n```\n\n---\n\n## upload-to-test-dashboard\n\nA github action that uploads specific files to wunderflats' test dashboard\n\n#### Example:\n\n```\njobs:\n  some-job:\n    name: Do Something\n    steps:\n      - id: deploy\n        run: return 1\n      - if: (success() || failure()) \u0026\u0026 steps.last_run.outputs.conclusion != 'success'\n        uses: wunderflats/actions/upload-to-test-dashboard@master\n        with:\n          API_URL: https://test-dashboard.wunderflats.xyz/api/test-result\n          REPOSITORY: my-repo-name\n          BRANCH: my-fantastic-branch\n          TEST_SUITE: jest\n          TEST_FILE_TYPE: jest\n          COMMIT_HASH: ${{ github.sha }}\n          JOB_ID: ${{ github.run_id }}\n          FILES: ./test-reports/*\n          DASHBOARD_PUSH_TOKEN: ${{ secrets.DASHBOARD_PUSH_TOKEN }}\n```\n\n---\n\n## comment-snyk-report\n\nA github action that adds the Snyk report(`snyk test` \u0026 `snyk code test`) as a comment to PR\n\n#### Example:\n\n```\njobs:\n  some-job:\n    name: Do Something\n    steps:\n      - name: run Snyk commands\n        run: |\n          snyk test --all-projects --json-file-output=snyk-dependencies-report.json\n          snyk code test --all-projects --json-file-output=snyk-codebase-report.json\n      - name: Comment reports\n        uses: wunderflats/actions/comment-snyk-report@master\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n          dependencies-check-file: snyk-dependencies-report.json\n          codebase-check-file: snyk-codebase-report.json\n```\n\n---\n\n## remove-testing-images\n\nRemoves a testing image by tag or clean up all unneeded and old images(older than 3 months)\n\n#### Example:\n\n```\njobs:\n  delete-testing-image:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Delete latest testing image\n        uses: wunderflats/actions/remove-testing-images@master\n        with:\n          package-name: \"api-testing\"\n          tag: \"branch-tag\"\n          bulk-cleanup: false\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwunderflats%2Factions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwunderflats%2Factions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwunderflats%2Factions/lists"}