Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 83306df

Browse files
author
Archive Bot
committedMar 24, 2025·
Update archive.
0 parents  commit 83306df

File tree

573 files changed

+61190
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

573 files changed

+61190
-0
lines changed
 

‎.github/workflows/main.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
schedule:
3+
- cron: '*/20 * * * *'
4+
# Allow running manually
5+
workflow_dispatch:
6+
jobs:
7+
publish_archive_job:
8+
runs-on: ubuntu-latest
9+
name: A job to publish zulip-archive in GitHub pages
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
- name: Run archive
14+
id: archive
15+
uses: zulip/zulip-archive@master
16+
with:
17+
zuliprc: ${{ secrets.ZULIPRC }}
18+
# Using the GitHub Token that is provided automatically by GitHub Actions
19+
# (no setup needed).
20+
github_token: ${{ secrets.GITHUB_TOKEN }}
21+
delete_history: true
22+
archive_branch: master

‎.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.