We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eca5612 + db6353d commit 9cc4e59Copy full SHA for 9cc4e59
.github/workflows/export-mastodon-list.yml
@@ -45,11 +45,18 @@ jobs:
45
python -m pip install -U -r requirements.txt
46
47
- name: Export geotribu's mastodon lists and accounts
48
+ if: github.actor != 'dependabot[bot]'
49
env:
50
GEOTRIBU_MASTODON_API_ACCESS_TOKEN: ${{ secrets.GEOTRIBU_MASTODON_API_ACCESS_TOKEN }}
51
run: |
52
geotribu social mastodon-export -w export/
53
54
+ - name: Create dummy export for Dependabot
55
+ if: github.actor == 'dependabot[bot]'
56
+ run: |
57
+ mkdir -p export/
58
+ echo "Dependabot test run" > export/README.txt
59
+
60
- name: Generate Directory Listings
61
uses: jayanta525/[email protected]
62
with:
0 commit comments