Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can not get triggering_actor from actions context or env variables #33675

Open
yougg opened this issue Feb 21, 2025 · 0 comments
Open

can not get triggering_actor from actions context or env variables #33675

yougg opened this issue Feb 21, 2025 · 0 comments
Labels
topic/gitea-actions related to the actions of Gitea type/bug

Comments

@yougg
Copy link

yougg commented Feb 21, 2025

Description

whether actions is first time triggered or rerun manualy, the triggering_actor is always empty

actions on the gitea demo site is always Waiting to run, so i don't know if it can be reporduced.

Gitea Version

1.23.4

Can you reproduce the bug on the Gitea demo site?

No

Log Gist

No response

Screenshots

Image

Image

Git Version

2.39.5

Operating System

Debian GNU/Linux 12 (bookworm)

How are you running Gitea?

running gitea service by docker container

name: gitea
services:
  gitea:
    image: 'gitea/gitea:1.23.4'
    restart: always
    container_name: gitea
    #network_mode: host
    hostname: 'gitea.example.com'
    environment:
      - DOMAIN='gitea.example.com'
      - SSH_DOMAIN='gitea.example.com'
      - GITEA__database__DB_TYPE=postgres
      - GITEA__database__HOST=postgres:5432
      - GITEA__database__NAME=gitea_db
      - GITEA__database__USER=gitea_db_user
      - GITEA__database__PASSWD=gitea_db_pwd
    volumes:
      - ./data:/data
      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro
    ports:
      - "3000:3000"
      - "2222:22"
    depends_on:
      - postgres
    logging:
      options:
        max-size: 100m

  postgres:
    image: 'postgres:17.3'
    restart: always
    container_name: postgres
    shm_size: 256mb
    environment:
      - POSTGRES_USER=gitea_db_user
      - POSTGRES_PASSWORD=gitea_db_pwd
      - POSTGRES_DB=gitea_db
    volumes:
      - ./postgres:/var/lib/postgresql/data

Database

PostgreSQL

@yougg yougg added the type/bug label Feb 21, 2025
@kemzeb kemzeb added the topic/gitea-actions related to the actions of Gitea label Feb 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic/gitea-actions related to the actions of Gitea type/bug
Projects
None yet
Development

No branches or pull requests

2 participants