Compare commits
13 Commits
f53aba6b7b
..
v7.4.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a65f5affa | |||
| d494ec2185 | |||
| ba8824c953 | |||
| 4a56e42596 | |||
| 8609dc0385 | |||
|
21bc527adc
|
|||
|
8e3f4abe92
|
|||
| a3c057c6b2 | |||
| e6ae0ce824 | |||
| 6282215529 | |||
| d858c35479 | |||
| aaabc5d3d3 | |||
| 357479799d |
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"permissions": {
|
||||
"allow": [
|
||||
"Bash(but status:*)"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
uses: unboundsoftware/shared-workflows/.gitea/workflows/Release.yml@main
|
||||
@@ -2,6 +2,25 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [7.4.0] - 2026-01-09
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
- Migrate from GitLab CI to Gitea Actions
|
||||
- Add release workflow using shared workflow
|
||||
|
||||
### 📚 Documentation
|
||||
|
||||
- Add CLAUDE.md for Claude Code guidance
|
||||
|
||||
### Chore
|
||||
|
||||
- *(deps)* Update python:3.14.2-slim docker digest to aa5be11
|
||||
- *(deps)* Update python:3.14.2-slim docker digest to f7864aa
|
||||
- *(deps)* Update python:3.14.2-slim docker digest to 3955a7d
|
||||
- *(deps)* Update dependency urllib3 to v2.6.3
|
||||
- *(deps)* Update actions/checkout action to v6
|
||||
|
||||
## [7.3.17] - 2025-12-29
|
||||
|
||||
### Chore
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
# CLAUDE.md
|
||||
|
||||
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
||||
|
||||
## Project Overview
|
||||
|
||||
This is a Docker image project for Robot Framework test automation. It packages Robot Framework with commonly used testing libraries and browser drivers (Firefox, Chrome) into a containerized environment for running automated tests.
|
||||
|
||||
## Build Commands
|
||||
|
||||
The project uses `build-tools` (not Docker buildx) for building:
|
||||
```bash
|
||||
build # Build the Docker image
|
||||
push # Push the image to registry
|
||||
```
|
||||
|
||||
## Project Structure
|
||||
|
||||
- `Dockerfile` - Main container definition based on Python slim, installs browsers and RF libraries
|
||||
- `requirements.txt` - Python dependencies (Robot Framework + libraries)
|
||||
- `.version` - JSON file containing the current version
|
||||
- `cliff.toml` - git-cliff configuration for changelog generation
|
||||
- `.gitea/workflows/ci.yaml` - CI pipeline (builds on push/PR to main)
|
||||
|
||||
## Key Libraries Included
|
||||
|
||||
- robotframework-browser (Playwright-based)
|
||||
- robotframework-seleniumlibrary
|
||||
- robotframework-appiumlibrary
|
||||
- robotframework-databaselibrary (with PostgreSQL/MySQL drivers)
|
||||
- robotframework-requests
|
||||
- robotframework-httplibrary
|
||||
|
||||
## Versioning
|
||||
|
||||
The project uses semantic versioning. Version is stored in `.version` as JSON. Changelog is auto-generated using git-cliff with conventional commits.
|
||||
|
||||
## CI/CD
|
||||
|
||||
Uses Gitea Actions. The pipeline runs `build` and `push` on main branch and pull requests.
|
||||
Reference in New Issue
Block a user