-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Open
Labels
topic/gitea-actionsrelated to the actions of Gitearelated to the actions of Giteatopic/uiChange the appearance of the Gitea UIChange the appearance of the Gitea UItype/bug
Description
Description
I’m porting some GitHub Actions to Gitea Actions, and I encountered an issue with emojis in name.
I used this example: https://docs.gitea.com/next/usage/actions/quickstart#use-actions
This works:
name: Gitea Actions DemoThis doesn’t report status on the PR:
name: 🧪 Gitea Actions Demo
# or
name: "🧪 Gitea Actions Demo "
# or
name: "Gitea Actions Demo 🧪"These names and jobs are shown succesfully in the “Actions” tab of the project.
Complete example:
name: 🧪 Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
pull_request:
push:
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: https://github.com/actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."Names with emojis are supported on GitHub, e.g. liip/LiipTestFixturesBundle#337
Screenshots
Without emoji:
With emoji:
Gitea Version
1.25.2
Can you reproduce the bug on the Gitea demo site?
Yes
Operating System
Ubuntu 25.10
Browser Version
Mozilla Firefox 146.0 20251205151434 20251205151434
Metadata
Metadata
Assignees
Labels
topic/gitea-actionsrelated to the actions of Gitearelated to the actions of Giteatopic/uiChange the appearance of the Gitea UIChange the appearance of the Gitea UItype/bug


