{"id":20618353,"url":"https://github.com/tddschn/actionsflow-tutorial","last_synced_at":"2026-03-19T16:45:41.970Z","repository":{"id":110176432,"uuid":"530959722","full_name":"tddschn/actionsflow-tutorial","owner":"tddschn","description":null,"archived":false,"fork":false,"pushed_at":"2023-03-08T06:04:00.000Z","size":786,"stargazers_count":2,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-09T11:47:20.375Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"0bsd","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tddschn.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":"2022-08-31T06:23:39.000Z","updated_at":"2023-05-04T11:53:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"52b4e098-392c-4dc8-a96b-09a08e3b00aa","html_url":"https://github.com/tddschn/actionsflow-tutorial","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"actionsflow/actionsflow-workflow-default","purl":"pkg:github/tddschn/actionsflow-tutorial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Factionsflow-tutorial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Factionsflow-tutorial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Factionsflow-tutorial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Factionsflow-tutorial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tddschn","download_url":"https://codeload.github.com/tddschn/actionsflow-tutorial/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tddschn%2Factionsflow-tutorial/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30221193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T14:02:48.375Z","status":"ssl_error","status_checked_at":"2026-03-07T14:02:43.192Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-11-16T12:08:07.073Z","updated_at":"2026-03-07T16:04:18.258Z","avatar_url":"https://github.com/tddschn.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\nThis is a workflow repository powered by [Actionsflow](https://github.com/actionsflow/actionsflow), generated from [actionsflow/actionsflow-workflow-default](https://github.com/actionsflow/actionsflow-workflow-default)\r\n\r\n# 🏁 Getting Started \u003ca name = \"getting_started\"\u003e\u003c/a\u003e\r\n\r\nBuild an Actionsflow workflow is a four-step process:\r\n\r\n1. **Create a public Github repository by this [link](https://github.com/actionsflow/actionsflow-workflow-default/generate).**\r\n\r\n   A typical Actionsflow repository structure looks like this:\r\n\r\n   ```sh\r\n   ├── .github\r\n   │   └── workflows\r\n   │       └── actionsflow.yml\r\n   ├── .gitignore\r\n   ├── README.md\r\n   └── workflows\r\n   │   └── rss.yml\r\n   │   └── webhook.yml\r\n   └── package.json\r\n   ```\r\n\r\n1. **Uncomment [`.github/workflows/actionsflow.yml`](/.github/workflows/actionsflow.yml) schedule event**\r\n\r\n    ```yml\r\n    on:\r\n      schedule:\r\n        - cron: \"*/15 * * * *\"\r\n    ```\r\n    \u003e Note: To prevent abuse, by default, the schedule is commented, please modify the schedule time according to your own needs, the default is once every 15 minutes. Learn more about schedule event, please see [here](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#schedule)\r\n\r\n1. **Define your [workflow file](https://actionsflow.github.io/docs/workflow/) at `workflows` directory**\r\n\r\n   A typical workflow file `rss.yml` looks like this:\r\n\r\n   ```yaml\r\n   on:\r\n     rss:\r\n       url: https://hnrss.org/newest?points=300\u0026count=3\r\n   jobs:\r\n     request:\r\n       name: Make a HTTP Request\r\n       runs-on: ubuntu-latest\r\n       steps:\r\n         - name: Make a HTTP Request\r\n           uses: actionsflow/axios@v1\r\n           with:\r\n             url: https://hookb.in/VGPzxoWbdjtE22bwznzE\r\n             method: POST\r\n             body: |\r\n               {\r\n                 \"link\":\"${{ on.rss.outputs.link }}\", \r\n                 \"title\": \"${{ on.rss.outputs.title }}\",\r\n                 \"content\":\"\u003c\u003c\u003c${{ on.rss.outputs.contentSnippet }}\u003e\u003e\u003e\"\r\n               }\r\n   ```\r\n\r\n   For more information about the Actionsflow workflow file, see the\r\n   [Actionsflow workflow reference](https://actionsflow.github.io/docs/workflow/).\r\n\r\n   You can explore [Triggers List](https://actionsflow.github.io/docs/triggers/) or [Awesome Actionsflow Workflows](https://github.com/actionsflow/awesome-actionsflow) to get more inspired.\r\n\r\n1. **Commit and push your updates to Github**\r\n\r\nThen, Actionsflow will run your workflows as you defined, you can view logs at your repository actions tab at [Github](https://github.com)\r\n\r\nFor more information, see [Full documentation](https://actionsflow.github.io/docs/)\r\n\r\n## Run Locally\r\n\r\nYou can run self-hosted Actionsflow manually or [by docker](https://actionsflow.github.io/docs/self-hosted/#docker): \r\n\r\n## Prerequisites\r\n\r\n1. Install [docker](https://docs.docker.com/get-docker/)\r\n1. Install [act](https://github.com/nektos/act)\r\n1. Install dependencies by running `npm install`\r\n\r\n### Start\r\n\r\nStart Actionsflow locally:\r\n\r\n```bash\r\nnpm run start\r\n# Then, the cron job and webhook server will start running\r\n# The webhook endpoint will be ran at http://localhost:3000/webhook/\r\n```\r\n\r\n### Build\r\n\r\n```bash\r\nnpm run build\r\n# Then, the standard workflow files will be built at ./dist/workflows\r\n```\r\n\r\n### Clean\r\n\r\nActionsflow build will use cache for deduplicating the data, if you want to test your workflow with the same data, you may need to clean the cache by the following command:\r\n\r\n```bash\r\n# Clean the cache and dist folder.\r\nnpm run clean\r\n```\r\n\r\nLearn more abount self-hosted Actionsflow [here](https://actionsflow.github.io/docs/self-hosted)\r\n\r\n\r\n# 🎓 Learn More \u003ca name=\"reference\"\u003e\u003c/a\u003e\r\n\r\nFull documentation for Actionsflow lives [on the website](https://actionsflow.github.io/docs/).\r\n\r\n- [Workflow Syntax for Actionsflow](https://actionsflow.github.io/docs/workflow/) - Learn more about the Actionsflow workflow file syntax\r\n- [Triggers List](https://actionsflow.github.io/docs/triggers/) - Explore Actionsflow triggers\r\n- [Awesome Actionsflow Workflows](https://github.com/actionsflow/awesome-actionsflow) - Explore Actionsflow workflows use case to get inspired\r\n- [Core Concepts](https://actionsflow.github.io/docs/concepts/) - Learn more about how Actionsflow worked\r\n- [Creating Triggers for Actionsflow](https://actionsflow.github.io/docs/creating-triggers/) - Learn more about how to create your own trigger for Actionsflow\r\n- [FAQs](https://actionsflow.github.io/docs/faqs/) - Actionsflow FAQs\r\n- [Upgrade Guide](https://actionsflow.github.io/docs/upgrade/)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftddschn%2Factionsflow-tutorial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftddschn%2Factionsflow-tutorial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftddschn%2Factionsflow-tutorial/lists"}