/
matimofeeva
/
Individual-Project
ОбзорДокументацияВойти
/
matimofeeva
/
Individual-Project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
Individual-Project/
.github/workflows/
..
build.yml

Initial commit

5 месяцев назад
deploy.yml

Initial commit

5 месяцев назад
import-publications.yml

Initial commit

5 месяцев назад
internal-readme-news.yml

Initial commit

5 месяцев назад
upgrade.yml

Initial commit

5 месяцев назад
internal-readme-news.yml
# Internal HugoBlox workflow - Updates README news section from RSS feed.
# This file only runs on the HugoBlox org repo and can be safely deleted by end users.
name: Internal - Update README News
 
on:
schedule:
- cron: 0 0 * * 0
# Allows you to run this workflow manually from the Actions tab on GitHub.
workflow_dispatch:
 
# Provide permission to clone the repo and deploy it to GitHub Pages
permissions:
contents: write
 
jobs:
update:
if: github.repository_owner == 'HugoBlox'
runs-on: ubuntu-latest
steps:
- uses: HugoBlox/gh-action-updater@v2
with:
feed-url: https://hugoblox.com/rss.xml
readme-section: news
branch: main
github_token: ${{ secrets.GITHUB_TOKEN }}