diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index 9f32878..53a986f 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -1,6 +1,8 @@ on: [push] jobs: - test: + ls: runs-on: docker steps: - - run: echo All Goods \ No newline at end of file + - uses: actions/checkout@v3 + - run: | + ls ${{ github.workspace }} \ No newline at end of file diff --git a/.forgejo/workflows/renovate.yaml b/.forgejo/workflows/renovate.yaml index 2efdd3e..cca172b 100644 --- a/.forgejo/workflows/renovate.yaml +++ b/.forgejo/workflows/renovate.yaml @@ -1,12 +1,6 @@ -platform: linux/amd64 -when: - event: - - cron - - push - - manual - -pipeline: +on: [push,manual] +jobs: renovate-dry: image: ghcr.io/renovatebot/renovate:36.52.2 pull: true @@ -37,4 +31,4 @@ pipeline: when: - event: cron cron: renovate - - event: manual + - event: manual \ No newline at end of file