File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 11# Set the default behavior for correcting line endings,
22# in case people don't have core.autocrlf set.
33* text =auto
4-
4+ F5-NGINX-team-notes.md merge =ours
5+ README.md merge =ours
6+ LICENSE merge =ours
7+ CONTRIBUTING_DOCS.md merge =ours
8+ CONTRIBUTING.md merge =ours
9+ .github /pull_request_template.md merge =ours
10+ .github /workflows /update_from_nginx_documentation.yml merge =ours
11+ .gitattributes merge =ours
Original file line number Diff line number Diff line change 1+ name : Sync from nginx/documentaion to public
2+
3+ on :
4+ workflow_dispatch :
5+ schedule :
6+ - cron : " */10 * * * *"
7+
8+ permissions :
9+ contents : write
10+
11+ jobs :
12+ checkout :
13+ runs-on : ubuntu-latest
14+ if : github.ref == 'refs/heads/main'
15+
16+ steps :
17+ - name : Update Private
18+ run : |
19+ eval `ssh-agent -s`
20+ echo "${{ secrets.UPDATE_REPO }}" | ssh-add -
21+ git clone https://github.com/nginx/documentation.git
22+ cd documentation
23+ git remote add private [email protected] :nginx/documentation-private.git 24+ git checkout -b public
25+ git push private public
You can’t perform that action at this time.
0 commit comments